- slides: Terminal based presentation tool
- curlconverter: transpiles
curl
commands into programs in other programming languages - trash-cli: Move files and folders to the trash
Tip of the week: Merge two text files side-by-side with paste
For example:
% cat << EOF > file1
HEADER1
Data-1
Date-2
EOF
% cat << EOF > file2
HEADER2
Value-1
Value-2
EOF
% paste file1 file2
HEADER1 HEADER2
Data-1 Value-1
Date-2 Value-2