diff options
author | Donald Burr <dburr@FreeBSD.org> | 1998-05-16 03:30:43 +0000 |
---|---|---|
committer | Donald Burr <dburr@FreeBSD.org> | 1998-05-16 03:30:43 +0000 |
commit | 0ecccd54b8d73a793b4d0047410effcd8b3375a7 (patch) | |
tree | 4dd3d78845da8f7460ab8de9303ac38b91c24ca6 /news/xmitbin/files/patch-ad | |
parent | updated with RESTRICTED status of x11/sharefonts. (diff) |
New port news/xmitbin, a binary file e-mailer &/or poster.
Notes
Notes:
svn path=/head/; revision=11005
Diffstat (limited to 'news/xmitbin/files/patch-ad')
-rw-r--r-- | news/xmitbin/files/patch-ad | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/news/xmitbin/files/patch-ad b/news/xmitbin/files/patch-ad new file mode 100644 index 000000000000..aed92468b430 --- /dev/null +++ b/news/xmitbin/files/patch-ad @@ -0,0 +1,28 @@ +diff -ruN postbin.old postbin +--- postbin.old Wed Dec 31 16:00:00 1969 ++++ postbin Sat Nov 29 04:15:38 1997 +@@ -0,0 +1,24 @@ ++#!/bin/sh ++POSTER="inews -h" ++DSCDIR=${HOME}/.xmitBin ++if [ ! -d ${DSCDIR} ] ++then ++ echo creating ${DSCDIR} ++ mkdir ${DSCDIR} ++fi ++export POSTER DSCDIR ++ ++if [ $# -ne 3 ] ++then ++ echo "usage: ${0} newsgroup filename title" ++ echo "NOTE: title must be all one argument, so enclose it in quotes!" ++ exit 1 ++fi ++ ++NG=${1} ++FILE=${2} ++TITLE=${3} ++ ++exec xmitBin -post -d ${NG} -f ${FILE} -verbose "${TITLE}" ++# -l label to put in titlebar ++# consider -noscript |