File: global

package info (click to toggle)
fastdnaml 1.2.2-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,156 kB
  • sloc: ansic: 3,910; sh: 571; makefile: 46
file content (13 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh
#
# global shell script
#
if test $# -gt 2
   then echo "Usage:  $0  [ full_tree_range [ partial_tree_ range ]]"
   exit
   fi
read first_line
echo "$first_line G"
if test $# -eq 1; then echo "G $1"    ; fi
if test $# -eq 2; then echo "G $1 $2" ; fi
cat -