openssl
CLIGenerate random secrets, encode/decode base64, and hash files. Preinstalled on macOS and Linux.
Base64-encode a file on a single line (portable)Verified macOS · Linux
openssl base64 -A -in file.txt+2 more matching recipessecurity5 recipes · 5 verified
sed
CLIStream editor for filtering and transforming text.
Replace text in a file in place (portable, any OS)Verified macOS · Linux
perl -pi -e 's/old/new/g' file.txt+1 more matching recipetext-processing6 recipes · 4 verified
timeout (coreutils)
CLIRun a command with a time limit. Part of GNU coreutils: built into Linux, 'gtimeout' on macOS after brew install coreutils.
Run a command with a timeout (portable, no install)Verified macOS · Linux
perl -e 'alarm shift; exec @ARGV' 10 some-commandsystem3 recipes · 3 verified