Skip to content

Instantly share code, notes, and snippets.

@elhenro
Created May 5, 2019 17:36
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 elhenro/805ec70f7d7cfb6316a3852c5c8656f1 to your computer and use it in GitHub Desktop.
Save elhenro/805ec70f7d7cfb6316a3852c5c8656f1 to your computer and use it in GitHub Desktop.
#!/bin/sh
case "$1" in
*.tar*) tar tf "$1";;
*.zip) unzip -l "$1";;
*.rar) unrar l "$1";;
*.7z) 7z l "$1";;
*.pdf) pdftotext "$1" -;;
*) highlight -O ansi "$1" || cat "$1";;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment