OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.4 KiB

  1. #!/bin/sh
  2. #
  3. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  4. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  5. #
  6. # Filename: package/.../less/lesspipe.sh
  7. # Copyright (C) 2004 - 2006 The T2 SDE Project
  8. # Copyright (C) 1998 - 2003 Clifford Wolf
  9. #
  10. # More information can be found in the files COPYING and README.
  11. #
  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. # --- SDE-COPYRIGHT-NOTE-END ---
  17. case "$1" in
  18. # Archives
  19. *.a) ar t $1;;
  20. *.tar) tar tvf $1;;
  21. *.tgz|*.tar.gz|*.tar.[Zz]) tar tvfz $1;;
  22. *.tbz2|*.tar.bz2) tar tvfI $1;;
  23. *.zip) unzip -l $1;;
  24. # Packages
  25. *.gem) mine -p $1 ; echo -e "\nFile List:" ; mine -l $1;;
  26. *.rpm) rpm -q -i -p $1 ; echo "File List :" ; rpm -q -l -p $1;;
  27. # Manuals
  28. *ld.so.8) nroff -p -t -c -mandoc $1;;
  29. *.so.*) ;;
  30. *.[1-9]|*.[1-9][mxt]|*.[1-9]thr|*.man)
  31. nroff -p -t -c -mandoc $1;;
  32. # Compressed manuals
  33. *.[1-9].gz|*.[1-9][mxt].gz|*.[1-9]thr.gz|*.man.gz|\
  34. *.[1-9].[Zz]|*.[1-9][mxt].[Zz]|*.[1-9]thr.[Zz]|*.man.[Zz])
  35. gzip -c -d $1 | nroff -p -t -c -mandoc;;
  36. *.[1-9].bz2|*.[1-9][mxt].bz2|*.[1-9]thr.bz2|*.man.bz2)
  37. bzip2 -c -d $1 | nroff -p -t -c -mandoc ;;
  38. # Compressed files
  39. *.gz|*.Z|*.z) gzip -c -d $1;;
  40. *.bz2) bzip2 -c -d $1;;
  41. esac