Skip to content

Instantly share code, notes, and snippets.

@textarcana
Created November 22, 2021 21:37
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 textarcana/447a231527b32438383b50b1d7784d03 to your computer and use it in GitHub Desktop.
Save textarcana/447a231527b32438383b50b1d7784d03 to your computer and use it in GitHub Desktop.
# Silently shift the first line off input sent through a pipe.
all_but_first_line(){
# Read from a pipe
declare input=${1:-$(</dev/stdin)};
# Print all but the first line of input
tail -n +2 <<< "$input"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment