bashoneliners.com

Welcome to bashoneliners.com, a curated collection of practical and well-explained Bash one-liners, snippets, tips and tricks. We aim to make each published one-liner to be of high quality: useful, easy to read, follows best practices, with clear, detailed, accurate explanation. These one-liners should help you automate tasks, troubleshoot problems, whether it be in system administration, file management, networking or programming.

Go up to a particular folder

alias ph='cd ${PWD%/public_html*}/public_html'

July 18, 2017Jab2870

Aliases the ls command to display the way I like it

alias ls='ls -lhGpt --color=always'

September 22, 2011versorge