Check-in Number:
|
500 | |
Date: |
2001-Jun-13 10:54:50 (local)
2001-Jun-13 08:54:50 (UTC) |
User: | rse |
Branch: | |
Comment: |
*** empty log message *** |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shtool/ChangeLog 1.151 -> 1.152
--- ChangeLog 2001/05/21 14:41:33 1.151
+++ ChangeLog 2001/06/13 08:54:50 1.152
@@ -11,6 +11,12 @@
Changes between 1.5.3 and 1.5.4 (19-Apr-2001 to xx-May-2001):
+ *) Fixed example of `shtool move' in shtool.pod
+ [Ralf S. Engelschall]
+
+ *) Fixed a bug in `shtool echo -e %d'
+ [Ralf S. Engelschall, Christoph Schug <chris@schug.net>]
+
*) Adjusted "make test" to also work under Cygwin environment.
[Joerg Freudenberger <Joerg.Freudenberger@nbg9.siemens.de>]
|
|
ossp-pkg/shtool/sh.echo 1.24 -> 1.25
--- sh.echo 2001/01/17 09:55:11 1.24
+++ sh.echo 2001/06/13 08:54:50 1.25
@@ -141,8 +141,9 @@
fi
fi
-# determine host name
+# determine host and domain name
hostname=''
+domainname=''
if [ ".$opt_e" = .yes -a ".`echo $text | egrep '%h'`" != . ]; then
hostname="`(uname -n) 2>/dev/null |\
awk '{ printf("%s", $1); }'`"
@@ -160,9 +161,6 @@
;;
esac
fi
-
-# determine domain name
-domainname=''
if [ ".$opt_e" = .yes -a ".`echo $text | egrep '%d'`" != . ]; then
if [ ".$domainname" = . ]; then
if [ -f /etc/resolv.conf ]; then
|
|
ossp-pkg/shtool/shtool.pod 1.49 -> 1.50
--- shtool.pod 2001/04/19 07:46:40 1.49
+++ shtool.pod 2001/06/13 08:54:50 1.50
@@ -396,7 +396,7 @@
Examples:
# shell script
- shtool move -v -e *.txt %1.asc
+ shtool move -v -e '*.txt' %1.asc
# Makefile
scanner.c: scanner.l
|
|