changeset 7227:b1b9a2c7a4f7

<shachaf> mkx bin/makelist//file="bin/$1"; shift; cp bin/emptylist "$file"; for n in "$@"; do echo "$n" >> "$file"; done
author HackBot
date Mon, 14 Mar 2016 18:17:22 +0000
parents f85e360397fe
children 996967fee905
files bin/makelist
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/makelist	Mon Mar 14 18:16:08 2016 +0000
+++ b/bin/makelist	Mon Mar 14 18:17:22 2016 +0000
@@ -1,1 +1,1 @@
-cp bin/emptylist bin/"$1"
+file="bin/$1"; shift; cp bin/emptylist "$file"; for n in "$@"; do echo "$n" >> "$file"; done