Skip to content

Instantly share code, notes, and snippets.

@greenchapter
Last active January 13, 2021 20:45
Show Gist options
  • Save greenchapter/a82f1456b8095b944ce4cfca8a30a5c1 to your computer and use it in GitHub Desktop.
Save greenchapter/a82f1456b8095b944ce4cfca8a30a5c1 to your computer and use it in GitHub Desktop.
A basic bash shell extension for servers
# TAR Tooling
alias pack='f() { tar -cvf $1.tar $1};f'
alias compress='f() { tar -cvzf $1.tgz $1};f'
alias compress7z='f() { 7z a $1.7z $1 };f'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment