aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-06-26 12:37:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-06-26 12:37:49 +1200
commitbd0901ec556a454b6ca6f131dc6627a1c27c3e40 (patch)
treeec0ed8e4f52d66ed64ade42fcdee1a538ab8cf83 /bin
parentRemove unneeded 'in "$@"' for argument iteration (diff)
downloaddotfiles-bd0901ec556a454b6ca6f131dc6627a1c27c3e40.tar.gz
dotfiles-bd0901ec556a454b6ca6f131dc6627a1c27c3e40.zip
Explicitly terminate edda(1) options
Diffstat (limited to 'bin')
-rwxr-xr-xbin/edda2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/edda b/bin/edda
index 0626f409..f44f18c5 100755
--- a/bin/edda
+++ b/bin/edda
@@ -56,6 +56,6 @@ fi
# Run ed(1) over each file with the options and stdin given
for file ; do
- ed "${opts[@]}" "$file" < "$stdin"
+ ed "${opts[@]}" -- "$file" < "$stdin"
done