### Add tag on the current state of the branch you are $ git tag release01 $ git push origin --tags --------------------------------------------- ### Remove a tag $ git tag -d release01 $ git push origin :refs/tags/release01 --------------------------------------------- ### Search for a string on multiple files $ find . -name *.conf -exec grep -n serverName {} \; -print --------------------------------------------- ### Check all redirections before access a url $ curl -I -L awsperkbox.huddlebuy.co.uk --------------------------------------------- ### Find the largest 10 files $ find / -type f -print0 | xargs -0 du | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {} --------------------------------------------- ### Kill proccesses by regex $ kill $(ps aux | grep 'loquesea' | awk '{print $2}')