- file-arranger: Simple & capable File/Directory arranger/cleaner
- dust: A more intuitive version of du in rust
- atuin: Magical shell history
Tip of the week: Use openssl
for quick-and-dirty file encryption
Example:
% echo "My plaintext file." > /tmp/file1.txt
# Using the default macOS LibreSSL (results in a binary file):
% openssl enc -aes-256-cbc -salt -in /tmp/file1.txt -out /tmp/file1.enc
% openssl enc -d -aes-256-cbc -in /tmp/file1.enc -out /tmp/file1.txt
# Using OpenSSL from Homebrew (results in a more secure, base64 text file):
% /usr/local/opt/openssl@3/bin/openssl enc -pbkdf2 -iter 100000 -aes256 -salt -base64 \
-in /tmp/file1.txt -out /tmp/file1.enc
% /usr/local/opt/openssl@3/bin/openssl enc -d -pbkdf2 -iter 100000 -aes256 -base64 \
-in /tmp/file1.enc -out /tmp/file1.txt