Skip to content

Instantly share code, notes, and snippets.

@greymd
Last active June 27, 2017 23:37
Show Gist options
  • Save greymd/db3036acf78fc481fcf3420fec8939ee to your computer and use it in GitHub Desktop.
Save greymd/db3036acf78fc481fcf3420fec8939ee to your computer and use it in GitHub Desktop.
Quine.bash
Q ()
{
type Q | sed '1d;$aQ'
}
Q
@greymd
Copy link
Author

greymd commented Jun 27, 2017

G () {
  declare -f | grep ^G -A 4
  echo "G;exit"
}
G;exit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment