user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH 3/4] avoid spaces after shell redirection operators
  2016-08-21 11:47  6% [PATCH 0/4] preliminary doc updates Eric Wong
@ 2016-08-21 11:47  7% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2016-08-21 11:47 UTC (permalink / raw)
  To: meta

This makes us closer to git.git style (though I'm not quite sure
why we do this...)
---
 Documentation/include.mk           | 4 ++--
 Documentation/public-inbox-mda.pod | 2 +-
 scripts/dc-dlvr                    | 4 ++--
 scripts/dc-dlvr.pre                | 6 +++---
 scripts/report-spam                | 8 ++++----
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/Documentation/include.mk b/Documentation/include.mk
index 396a258..bd9df8c 100644
--- a/Documentation/include.mk
+++ b/Documentation/include.mk
@@ -52,7 +52,7 @@ all :: $(mantxt)
 Documentation/%.txt : Documentation/%.pod
 	$(pod2text) $< $@+ && mv $@+ $@
 
-txt2pre = ./Documentation/txt2pre < $< > $@+ && touch -r $< $@+ && mv $@+ $@
+txt2pre = ./Documentation/txt2pre <$< >$@+ && touch -r $< $@+ && mv $@+ $@
 txt := INSTALL README COPYING TODO
 dtxt := design_notes.txt design_www.txt dc-dlvr-spam-flow.txt
 dtxt := $(addprefix Documentation/, $(dtxt)) $(mantxt)
@@ -67,7 +67,7 @@ html: $(docs_html)
 gz_docs := $(addsuffix .gz, $(docs) $(docs_html))
 rsync_docs := $(gz_docs) $(docs) $(txt) $(docs_html)
 %.gz: %
-	gzip -9 --rsyncable < $< > $@+
+	gzip -9 --rsyncable <$< >$@+
 	touch -r $< $@+
 	mv $@+ $@
 
diff --git a/Documentation/public-inbox-mda.pod b/Documentation/public-inbox-mda.pod
index 62f87d6..18fcdd0 100644
--- a/Documentation/public-inbox-mda.pod
+++ b/Documentation/public-inbox-mda.pod
@@ -4,7 +4,7 @@ public-inbox-mda - mail delivery for public-inbox
 
 =head1 SYNOPSIS
 
-B<public-inbox-mda> E<lt> message
+B<public-inbox-mda> E<lt>MESSAGE
 
 =head1 DESCRIPTION
 
diff --git a/scripts/dc-dlvr b/scripts/dc-dlvr
index a38760f..81193b2 100755
--- a/scripts/dc-dlvr
+++ b/scripts/dc-dlvr
@@ -57,14 +57,14 @@ err=$?
 set -e
 
 case $err in
-1) $DELIVER -m INBOX.spam < $TMPMSG ;;
+1) $DELIVER -m INBOX.spam <$TMPMSG ;;
 *)
 	# users may override normal delivery and have it go elsewhere
 	if test -r ~/.dc-dlvr.rc
 	then
 		. ~/.dc-dlvr.rc
 	else
-		$DELIVER -m INBOX < $TMPMSG
+		$DELIVER -m INBOX <$TMPMSG
 	fi
 	;;
 esac
diff --git a/scripts/dc-dlvr.pre b/scripts/dc-dlvr.pre
index c10e80c..d7bc1b5 100644
--- a/scripts/dc-dlvr.pre
+++ b/scripts/dc-dlvr.pre
@@ -5,7 +5,7 @@
 export PATH=/usr/local/bin:/usr/bin:/bin
 trap 'err=$?; set +e; test $err -eq 0 || rm -f $TMPMSG; exit $err' EXIT
 case $1,$CLIENT_ADDRESS in
-pispam,) exec public-inbox-learn spam < $TMPMSG ;;
-piham,) exec public-inbox-learn ham < $TMPMSG ;;
+pispam,) exec public-inbox-learn spam <$TMPMSG ;;
+piham,) exec public-inbox-learn ham <$TMPMSG ;;
 esac
-exec public-inbox-mda < $TMPMSG
+exec public-inbox-mda <$TMPMSG
diff --git a/scripts/report-spam b/scripts/report-spam
index 0015ef0..325f571 100755
--- a/scripts/report-spam
+++ b/scripts/report-spam
@@ -32,14 +32,14 @@ PI_USER=pi
 
 case $1 in
 *[/.]spam/cur/*) # non-new messages in spam get trained
-	$DO_SENDMAIL $PI_USER+pispam < $1
-	exec $DO_SENDMAIL $USER+trainspam < $1
+	$DO_SENDMAIL $PI_USER+pispam <$1
+	exec $DO_SENDMAIL $USER+trainspam <$1
 	;;
 *:2,*S*) # otherwise, seen messages only
 	case $1 in
 	*:2,*T*) exit 0 ;; # ignore trashed messages
 	esac
-	$DO_SENDMAIL $PI_USER+piham < $1
-	exec $DO_SENDMAIL $USER+trainham < $1
+	$DO_SENDMAIL $PI_USER+piham <$1
+	exec $DO_SENDMAIL $USER+trainham <$1
 	;;
 esac
-- 
EW


^ permalink raw reply related	[relevance 7%]

* [PATCH 0/4] preliminary doc updates
@ 2016-08-21 11:47  6% Eric Wong
  2016-08-21 11:47  7% ` [PATCH 3/4] avoid spaces after shell redirection operators Eric Wong
  0 siblings, 1 reply; 2+ results
From: Eric Wong @ 2016-08-21 11:47 UTC (permalink / raw)
  To: meta

Actual documentation is coming...

Eric Wong (4):
      README: add link to source code mirrors
      doc: mda: remove vestigial pandoc comment
      avoid spaces after shell redirection operators
      doc: avoid conflicting with MakeMaker variable names

 Documentation/include.mk           | 20 ++++++++++----------
 Documentation/public-inbox-mda.pod |  4 +---
 README                             |  3 +++
 scripts/dc-dlvr                    |  4 ++--
 scripts/dc-dlvr.pre                |  6 +++---
 scripts/report-spam                |  8 ++++----
 6 files changed, 23 insertions(+), 22 deletions(-)


^ permalink raw reply	[relevance 6%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2016-08-21 11:47  6% [PATCH 0/4] preliminary doc updates Eric Wong
2016-08-21 11:47  7% ` [PATCH 3/4] avoid spaces after shell redirection operators Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).