annotate bin/makelist @ 10227:dcad47ed6915

<oerjan> sled bin/makelist//s,^,if [[ "$1" == *" "* ]]; then exec makelist $@; fi;,
author HackBot
date Fri, 10 Feb 2017 15:48:34 +0000
parents c989a1669243
children ed0a4712257a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10227
dcad47ed6915 <oerjan> sled bin/makelist//s,^,if [[ "$1" == *" "* ]]; then exec makelist $@; fi;,
HackBot
parents: 9075
diff changeset
1 if [[ "$1" == *" "* ]]; then exec makelist $@; fi;name="$1"; file="bin/$name"; makelistlist "$name"; shift; cp bin/emptylist "$file"; for n in "$@"; do echo "$n" >> "$file"; done