Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@criztovyl
Last active July 1, 2016 13:13
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 criztovyl/3fd22e3ed8158faf0ec3 to your computer and use it in GitHub Desktop.
Save criztovyl/3fd22e3ed8158faf0ec3 to your computer and use it in GitHub Desktop.
Tries to display the description line of a GPLed file.
gpl-comment()
{
[[ "$1" =~ ^-{0,2}h(elp)?$ ]] && { echo -e "Tries to display the description line of a GPLed file.\nUsage: gpl-comment file"; return 0; }
echo $(head -n2 $1 | tail -n1 | sed 's/^\W \?//')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment