Created
November 22, 2021 21:37
-
-
Save textarcana/447a231527b32438383b50b1d7784d03 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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