Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Created January 8, 2014 22:45
Show Gist options
  • Select an option

  • Save coderofsalvation/8325973 to your computer and use it in GitHub Desktop.

Select an option

Save coderofsalvation/8325973 to your computer and use it in GitHub Desktop.
gets the nth line ( e.g. cat file.txt | getline 4 )
# gets the nth line ( e.g. cat file.txt | getline 4 )
# @param int linenumber
getline(){
cat - | sed -n "$1p"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment