File: bootstrap

package info (click to toggle)
fastdnaml 1.2.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 516 kB
  • ctags: 379
  • sloc: ansic: 4,171; sh: 570; makefile: 64
file content (10 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh
#
# bootstrap shell script
#
if test $# -gt 1; then echo "Usage:  $0  [ seed ]"; exit; fi
read first_line
if test $# -lt 1; then random=$$ ; else random=$1 ; fi
echo "$first_line B"
echo "B $random"
cat -