Skip to content

Instantly share code, notes, and snippets.

@mcnemesis
Created April 11, 2019 07:40
Show Gist options
  • Save mcnemesis/b041eaefcfbd7030f41c362799d5dbee to your computer and use it in GitHub Desktop.
Save mcnemesis/b041eaefcfbd7030f41c362799d5dbee to your computer and use it in GitHub Desktop.
for those times you need a handy utility to preview logs on the way to doing other things...
# nuchwezilabs ## for those times you need a handy utility to preview logs on the way to doing other things...
#alias lastlog="tail -n 20 $(ls -d -t -1 "$PWD/logs/"** | sed -n '2p')"
#nu method...
function lastlog() {
tail -n 20 $(ls -d -t -1 $(pwd)/logs/** | sed -n '2p')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment