diff options
Diffstat (limited to 'share/examples/worm')
-rwxr-xr-x | share/examples/worm/makecdfs.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/share/examples/worm/makecdfs.sh b/share/examples/worm/makecdfs.sh index a3c9925..95e53c5 100755 --- a/share/examples/worm/makecdfs.sh +++ b/share/examples/worm/makecdfs.sh @@ -1,5 +1,7 @@ #!/bin/sh # +# $FreeBSD$ +# # usage: makecdfs "cd title" input-tree output-file "copyright string" # # For example: @@ -23,5 +25,5 @@ else tree=$1; shift outfile=$1; shift copyright="$*" - mkisofs $bootable -a -d -N -D -R -T -V "$title" -P "$copyright" -o $outfile $tree + mkisofs $bootable -d -N -D -R -T -V "$title" -P "$copyright" -o $outfile $tree fi |