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
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.