Skip to content

Instantly share code, notes, and snippets.

@grisu48
Created May 29, 2019 06:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grisu48/d299236a801961fa4c64b47f72a7282c to your computer and use it in GitHub Desktop.
Save grisu48/d299236a801961fa4c64b47f72a7282c to your computer and use it in GitHub Desktop.
Template for my bash aliases
#!/bin/bash
alias killall="killall -u `whoami` -i"
alias weather="curl 'http://wttr.in/'"
ctrim() {
if [ $# -lt 1 ]; then
echo "ctrim - trim the given pictures (using convert --trim)"
else
for i in $@; do
convert -trim "$i" "$i"
done
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment