mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
Remove hardlink to /bin/sed. Leave to PATH (Abs - 1391483)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1340 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
c7091142b3
commit
450054438c
2 changed files with 4 additions and 4 deletions
|
|
@ -70,8 +70,8 @@ CHMOD="/bin/chmod"
|
|||
TOUCH="/bin/touch"
|
||||
|
||||
PROGNAME=`/bin/basename $0`
|
||||
PROGPATH=`echo $0 | /bin/sed -e 's,[\\/][^\\/][^\\/]*$,,'`
|
||||
REVISION=`echo '$Revision$' | /bin/sed -e 's/[^0-9.]//g'`
|
||||
PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'`
|
||||
REVISION=`echo '$Revision$' | sed -e 's/[^0-9.]//g'`
|
||||
|
||||
. $PROGPATH/utils.sh
|
||||
|
||||
|
|
|
|||
|
|
@ -14,10 +14,10 @@ fi
|
|||
|
||||
print_revision() {
|
||||
echo "$1 (@PACKAGE@ @VERSION@) $2"
|
||||
$ECHO "@WARRANTY@" | /bin/sed -e 's/\n/ /g'
|
||||
$ECHO "@WARRANTY@" | sed -e 's/\n/ /g'
|
||||
}
|
||||
|
||||
support() {
|
||||
$ECHO "@SUPPORT@" | /bin/sed -e 's/\n/ /g'
|
||||
$ECHO "@SUPPORT@" | sed -e 's/\n/ /g'
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue