Skip to content

Instantly share code, notes, and snippets.

@webbower
Created February 5, 2019 00:53
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 webbower/287e61b154fb62ad258043727dae149d to your computer and use it in GitHub Desktop.
Save webbower/287e61b154fb62ad258043727dae149d to your computer and use it in GitHub Desktop.
Bash command to get a line from a file
# https://stackoverflow.com/a/6022431/2684520
function line() {
sed "${1}q;d" "$2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment