Dash:
[t2.git] / package / base / less / lesspipe.sh
blobbf0f54d3bf98a897e3569f36d8775a3ebe47ecaf
1 #!/bin/sh
3 # --- T2-COPYRIGHT-NOTE-BEGIN ---
4 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
5 #
6 # T2 SDE: package/.../less/lesspipe.sh
7 # Copyright (C) 2004 - 2005 The T2 SDE Project
8 # Copyright (C) 1998 - 2003 ROCK Linux Project
9 #
10 # More information can be found in the files COPYING and README.
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; version 2 of the License. A copy of the
15 # GNU General Public License can be found in the file COPYING.
16 # --- T2-COPYRIGHT-NOTE-END ---
18 case "$1" in
19 # Archives
20 *.a) ar t $1;;
21 *.tar) tar tvf $1;;
22 *.tgz|*.tar.gz|*.tar.[Zz]) tar tvfz $1;;
23 *.tbz2|*.tar.bz2) tar tvfI $1;;
24 *.zip) unzip -l $1;;
25 # Packages
26 *.gem) mine -p $1 ; echo -e "\nFile List:" ; mine -l $1;;
27 *.rpm) rpm -q -i -p $1 ; echo "File List :" ; rpm -q -l -p $1;;
28 # Manuals
29 *ld.so.8) nroff -p -t -c -mandoc $1;;
30 *.so.*) ;;
31 *.[1-9]|*.[1-9][mxt]|*.[1-9]thr|*.man)
32 nroff -p -t -c -mandoc $1;;
33 # Compressed manuals
34 *.[1-9].gz|*.[1-9][mxt].gz|*.[1-9]thr.gz|*.man.gz|\
35 *.[1-9].[Zz]|*.[1-9][mxt].[Zz]|*.[1-9]thr.[Zz]|*.man.[Zz])
36 gzip -c -d $1 | nroff -p -t -c -mandoc;;
37 *.[1-9].bz2|*.[1-9][mxt].bz2|*.[1-9]thr.bz2|*.man.bz2)
38 bzip2 -c -d $1 | nroff -p -t -c -mandoc ;;
39 # Compressed files
40 *.gz|*.Z|*.z) gzip -c -d $1;;
41 *.bz2) bzip2 -c -d $1;;
42 esac