aboutsummaryrefslogtreecommitdiff
path: root/man/man1
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-19 15:08:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-19 15:10:26 +1200
commit6622909eacd404d8d0ab14fc75a9d6969021cd7e (patch)
treea6110577f58773f04290c3b11495c67fce318404 /man/man1
parentAdd issue (diff)
downloaddotfiles-6622909eacd404d8d0ab14fc75a9d6969021cd7e.tar.gz
dotfiles-6622909eacd404d8d0ab14fc75a9d6969021cd7e.zip
Port edda(1) to POSIX sh
Losing the option-passing; could perhaps add this in again by specifically supporting POSIX-specific options for ed(1)
Diffstat (limited to 'man/man1')
-rw-r--r--man/man1/edda.110
1 files changed, 5 insertions, 5 deletions
diff --git a/man/man1/edda.1 b/man/man1/edda.1
index 21e6b163..3123c0ce 100644
--- a/man/man1/edda.1
+++ b/man/man1/edda.1
@@ -1,14 +1,14 @@
-.TH EDDA 1 "June 2015" "Manual page for edda"
+.TH EDDA 1 "August 2016" "Manual page for edda"
.SH NAME
.B edda
\- run ed(1) over multiple files
.SH SYNOPSIS
-.B edda [OPTS] [--] FILE1 [FILE2...]
+.B edda FILE1 [FILE2...]
.SH DESCRIPTION
-Duplicate any data on stdin into a temporary file, and run ed(1) with any given
-options over each of the files given as the remaining arguments. Example:
+Duplicate any data on stdin into a temporary file, and run ed(1) options over
+each of the files given as the remaining arguments. Example:
.P
- $ edda -s /etc/app.d/*.conf <<EOF
+ $ edda /etc/app.d/*.conf <<EOF
,s/foo/bar/g
w
EOF