Tool tests on the fast track
Tool Tips

We test Yuck, Uftpd, Guncat, Kiwix, Miller, and Debian Package Search.
Yuck 0.2.1
Function: Command-line parser for C
Source: http://www.fresse.org/yuck
License: BSD
Alternatives: Docopt, Gengetopt
Software developers who want to add parameter descriptions to the --help
output of their C programs should take a look at Your Umbrella Command Kit (yuck
). Unlike solutions such as gengetopt
, it doesn't have any library dependencies. Just a C compiler and the M4 macro processor need to be installed on the system.
Users can get an idea of this from the examples on the project website. To integrate new options into help, you first need to create a configuration file with the .yuck
suffix. This contains the formatted output as you want it to appear on Stdout. Calling yuck gen <file>.yuck
generates the corresponding C code, which users write in their source code. Alternatively, you can redirect the yuck
output to a file, which you can incorporate using #include
.
Yuck also contains a command that converts the .yuck
file into a man page. This removes the need to detour via the external help2man
helper. Instead, users can call up yuck genman <file>.yuck
. The tool then writes a Unix man page in troff format on the shell's default output.
(4 Stars) Using Yuck, programmers can easily enhance the help functions in their C programs and create man pages without delay.
Uftpd 1.9.1
Function: (T)FTP server for the home network
Source: http://troglobit.github.io/uftpd.html
License: ISC
Alternatives: atftp, vsftpd
Uftpd is a manageable (T)FTP server that does fine without configuration files. If you call it without any parameters, it runs in FTP mode – this means it listens on port 21 (TCP) as configured in /etc/services
. The -t
parameter activates TFTP mode (port 69). If you want to run the server on other ports, you need to specify that at launch time, either after -f
(for FTP mode) or -t
(for TFTP mode).
By default, uftpd
shares data from the FTP user's home directory. This is the /srv/ftp
folder, unless defined otherwise. To share other directories via the services, you need to enter the path after -h
. Uftpd follows symbolic links that take you out of the FTP directory, and it does not have a problem with defined write permissions for the group in the FTP home. The developers indicate that this is critical to security if the server is run outside the home network.
(3 Stars) The tool's focus is convenience; it is thus geared toward users who want to be able to set up a (T)FTP server easily on the local network. The missing security options thus should not pose a problem.
Guncat 1.01.01
Function: Cat for GPG-encrypted text
Source: https://github.com/fbb-git/guncat
License: GPLv3
Alternatives: gpgcat
Users who want to merge text files on the shell or to send them to standard output usually rely on cat
, but if either the whole text or parts of it are encrypted with GPG or PGP, several steps are required: Users need to encrypt the file with gpg
and can only then process it with cat
. Guncat can be useful here because it cleverly combines the two tools.
Guncat does not attempt to decrypt the entire file but restricts this to the area between BEGIN PGP MESSAGE
and END PGP MESSAGE
. If you do not use a GPG agent, you can instruct the tool to prompt you for the passphrase using the -p
parameter. By default, guncat
does not send output to the terminal, but you can enable this with --gpg-no-batch
.
The tool becomes even more chatty if you enable --show-gpg
; it then shows you the complete gpg
command line, but without running it. Users can then use --gpg-option=<option>
to add more gpg
parameters.
(5 Stars) Guncat is perfect for displaying (partially) encrypted messages and other text files in the shell. The tool also performs well with mail clients, such as Mutt, or in your own scripts that search encrypted content for exploits.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
News
-
Deepin 23 Preview Release is Available For Testing
The developers of Deepin have made a preview release of their latest offering available with three exciting new features.
-
The First Point Release For Ubuntu 22.04 is Now Available
Canonical has released the first point upgrade for Jammy Jellyfish which includes important new toolchains and fixes.
-
Kali Linux 2022.3 Released
From the creators of the most popular penetration testing distributions on the planet, comes a new release with some new tools and a community, real-time chat option.
-
The 14" Pinebook Pro Linux Laptop is Shipping
After a considerable delay, the 14" version of the Pinebook Pro laptop is, once again, available for purchase.
-
OpenMandriva Lx ROME Technical Preview Released
OpenMandriva’s rolling release distribution technical preview has been released for testing purposes and adds some of the latest/greatest software into the mix.
-
Linux Mint 21 is Now Available
The latest iteration of Linux Mint, codenamed Vanessa, has been released with a new upgrade tool and other fantastic features.
-
Firefox Adds Long-Anticipated Feature
Firefox 103 has arrived and it now includes a feature users have long awaited…sort of.
-
System76 Refreshes Their Popular Oryx Pro Laptop with a New CPU
The System76 Oryx Pro laptop has been relaunched with a 12th Gen CPU and more powerful graphics options.
-
Elive Has Released a New Beta
The Elive team is proud to announce the latest beta version (3.8.30) of its Enlightenment-centric Linux distribution.
-
Rocky Linux 9 Has Arrived
The latest iteration of Rocky Linux is now available and includes a host of new features and support for new architecture.