migration from private to rsa
[external/bash.git] / debian / patches / man-vx-opts.dpatch
1 #! /bin/sh -e
2
3 if [ $# -eq 3 -a "$2" = '-d' ]; then
4     pdir="-d $3"
5 elif [ $# -ne 1 ]; then
6     echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
7     exit 1
8 fi
9 case "$1" in
10     -patch) patch $pdir -f --no-backup-if-mismatch -p1 < $0;;
11     -unpatch) patch $pdir -f --no-backup-if-mismatch -R -p1 < $0;;
12     *)
13         echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
14         exit 1
15 esac
16 exit 0
17
18 # DP: document -v / -x options
19
20 --- ./doc/bash.1~       Wed Jan 20 22:48:04 1999
21 +++ ./doc/bash.1        Sun Nov 14 13:26:59 1999
22 @@ -104,6 +104,12 @@
23  This option allows the positional parameters to be set
24  when invoking an interactive shell.
25  .TP
26 +.B \-v
27 +Print shell input lines as they are read.
28 +.TP
29 +.B \-x
30 +Print commands and their arguments as they are executed.
31 +.TP
32  .B \-D
33  A list of all double-quoted strings preceded by \fB$\fP
34  is printed on the standard ouput.