Skip to content

Instantly share code, notes, and snippets.

@e-minguez
Created June 5, 2014 11:18
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 e-minguez/8e00a7357f642e946066 to your computer and use it in GitHub Desktop.
Save e-minguez/8e00a7357f642e946066 to your computer and use it in GitHub Desktop.
Useful .basrc alias/functions
http://www.reddit.com/r/linux/comments/27buyv/i_just_leaned_about_man_html/
function yell {
figlet -f slant "$@" | sed "s/\(.\+\)/ \1/g"
}
function manopt {
man $1 | sed 's/.\x08//g' | sed -n "/^\s\+-\+$2\b/,/^\s*$/p" | sed '$d;';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment