blob: be52caab6bd3457e4773958fd4f554223a637c51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/bin/sh
bat --paging=never --style=numbers --terminal-width $(($2-5)) -f "$1"
#
# unset COLORTERM
# bat --color=always --theme=base16 "$@"
# MIME=$(mimetype --all --brief "$1")
#echo "$MIME"
# case "$MIME" in
# # .pdf
# *application/pdf*)
# pdftotext "$1" -
# ;;
# # .7z
# *application/x-7z-compressed*)
# 7z l "$1"
# ;;
# # .tar .tar.Z
# *application/x-tar*)
# tar -tvf "$1"
# ;;
# # .tar.*
# *application/x-compressed-tar*|*application/x-*-compressed-tar*)
# tar -tvf "$1"
# ;;
# # .rar
# *application/vnd.rar*)
# unrar l "$1"
# ;;
# # .zip
# *application/zip*)
# unzip -l "$1"
# ;;
# # any plain text file that doesn't have a specific handler
# *text/plain*)
# # return false to always repaint, in case terminal size changes
# bat --force-colorization --paging=never --style=changes,numbers \
# --terminal-width $(($2 - 3)) "$1" && false
# ;;
# *)
# echo "unknown format"
# ;;
# esac
|