Skip to content

Instantly share code, notes, and snippets.

@vpistis
Last active August 29, 2015 14:27
Show Gist options
  • Save vpistis/a089d7599fc81e99acb2 to your computer and use it in GitHub Desktop.
Save vpistis/a089d7599fc81e99acb2 to your computer and use it in GitHub Desktop.
A collection of bash tips
# Colored echo output
function echo(){
BLUE_FG='\033[0;34m'
DEFAULT_FG='\033[0m'
builtin echo -e ${BLUE_FG}$@${DEFAULT_FG}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment