Platform-independent toolkit – Swiss File Knife
SwissArmy Knives
Swiss File Knife replaces more than 100 individual command-line tools at once, but it still fits on a USB stick and runs on all major operating systems.
If you work on the command line, you inevitably use many utilities and tools, all of which work differently, especially if you have to switch between operating systems. To simplify your life, take a look at Swiss File Knife (SFK) [1]: This tool replaces many conventional command-line programs with functions that operate consistently and follow the same syntax across operating systems. Additionally, SFK offers a way to combine individual commands in scripts. A short overview of the tool's many options is given in the "Swiss File Knife Capabilities" box.
Swiss File Knife Capabilities
Files and Directories
- Find files in the directory tree based on time, size, and name search and display in matching sort order.
- Find files in different ways and discover duplicates.
- Show differences between two directories.
- Run commands and programs against selected files or an entire directory tree.
- Create and verify MD5 checksums (fingerprints).
- Create hexdumps of binaries.
- Display the contents of ZIP, TAR, TAR.GZ, and TAR.BZ2 archives (commercial version only).
Text Files
- Display the beginning and end of files (like
head
andtail
). - Filter files and replace contents (partial).
- Quickly split and reassemble files.
- Remove tab stops.
- Replace Windows newlines (CRLF) with Unix newlines (LF).
Network
- Transfer files through the built-in FTP and HTTP servers.
- Download files using the built-in FTP and HTTP clients.
- Output/view data stream from a TCP, UDP, or HTTP connection.
SFK is available as a precompiled program with no dependencies, so you can take it anywhere you like on a USB stick and use it for on-site maintenance or rescue work. In addition to 32- and 64-bit binaries for Linux, you will find versions for the Raspberry Pi and other ARM machines, as well as Windows and Mac OS X, allowing you to work on all the major systems with the same tool.
Choosing your Weapons
All versions of SFK can be found on the tool's SourceForge page [2] below Files | 1-swissfileknife | <version> (v1.7.2 when this issue went to press). In the list, then click on the EXE file for your system, which you can identify by looking at the file name.
For the Raspberry Pi and other ARM computers, you will need ...-arm.exe
, whereas ...-linux.exe
and -linux-64.exe
are available for 32- and 64-bit Linux versions.
The file with the -linux-lib5
suffix is intended for older distributions that still use the libstdc++.so.5
library. The OS X versions for PPC and Intel machines are identified by the mac
name component. The Windows version is simply called sfk<version>.exe
.
A ZIP archive is available for download that contains, among other things, the Mac OS X, Windows, and Linux (32-bit) versions. After unpacking, you will find the Linux programs in the uxbin
subdirectory.
Don't let the .exe
suffix throw you with the Linux and Mac versions: It is still an executable binary. You can rename it to sfk
(no extension) and make it executable with:
chmod +x sfk
You can then use SFK directly, without having to install it. For computers on which you want to use SFK regularly, it makes sense to copy it to a suitable location such as ~/bin
or /usr/bin
.
In addition to the free version of Swiss File Knife under the BSD license, StahlWorks Technologies also offers a commercial "Extended Edition" [3] that lets you additionally search and filter the contents of .zip
, .tar.gz
, and .tar.bz2
archives and replace strings and byte sequences rapidly in text or binary files.
Moreover, the tool understands wildcards and special search patterns for find and replace actions (but still no regular expressions). The Extended Edition is only available as a 32-bit program and is not available at all for ARM machines; a license costs EUR30 (~$35).
Tricky
If you call SFK without any parameters, it presents you with its feature list. Options tell the program which task you need it to complete. For example, sfk list Music
lists all the files in the Music
subdirectory (Figure 1).
The first parameter basically always determines the action to perform. For example, list
tells SFK to output a list of files. The developers of Swiss File Knife refer to these functions as commands. The second parameter references the directory or file to which the command refers.
Following this pattern, you can call other functions in a similar way. Some commands can be fine-tuned using other parameters. For example,
$ sfk list -late=all Music
lists all the files from the Music
directory sorted by date and time stamps. If you replace all
with the number 3
, then SFK displays only the first three files.
If you specify parameters, they must follow the command name immediately. Just calling sfk list
will give you a list of all parameters. Calling most of the other commands without parameters also provides detailed information about the options. For example, typing sfk ftp
reveals how you can upload a file to an FTP server.
No Rules Without Exceptions
Some commands do not require parameters and get to work immediately. For example, sfk space
reveals how much free space is available on the current drive. For these commands, the -help
parameter returns a help page (Figure 2). To discover which commands do this, you again need to type sfk
: Swiss File Knife marks these commands, usually with the abbreviation [-h]
.
Output from SFK help pages is typically quite long. To consume the information thoughtfully, it makes sense to redirect the output to a text file:
$ sfk list > list_help.txt
It is a bit easier to search the reference on the SFK site at [1]. StahlWorks Technologies also sells a $2.95 PDF with a reference for all commands [4]. The first 20 pages can be read for free. Essentially, this is just the contents of the help pages that SFK outputs, so you can save yourself the expense of this purchase.
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
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.