Skip to content

Instantly share code, notes, and snippets.

@samflores
Created July 29, 2019 01:33
Show Gist options
  • Save samflores/f2920ce80cfdb85621886b8a3695a848 to your computer and use it in GitHub Desktop.
Save samflores/f2920ce80cfdb85621886b8a3695a848 to your computer and use it in GitHub Desktop.
#!/bin/zsh
local parts=("${(@s/:/)1}")
if [ -z ${parts[2]} ]; then
cat ${parts[1]}
else
tail --lines="+${parts[2]}" ${parts[1]}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment