aboutsummaryrefslogtreecommitdiff
path: root/dot_config/lf/executable_pv.sh
blob: bafd074af60e82798862c99cf994fec4747c7718 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

case "$1" in
	*.tar*) tar tf "$1";;
	*.zip) unzip -l "$1";;
	*.pdf) pdftotext "$1" -;;
	*) highlight -O ansi "$1";;
esac