File: jumble

package info (click to toggle)
fastdnaml 1.2.2-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 576 kB
  • ctags: 384
  • sloc: ansic: 3,927; sh: 549; makefile: 22
file content (10 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh
#
# jumble 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 J"
echo "J $random"
cat -