Displaying 1 result from an estimated 1 matches for "potenitally".
Did you mean:
potenially
2004 May 15
2
Re: [Logcheck-commits] CVS logcheck/src
...gs"
$SORT -m $TMPDIR/logoutput/* | uniq | sed -e 's/ *$//' \
- > $TMPDIR/logoutput-sorted
+ > $TMPDIR/logoutput-sorted \
+ ||error "Could not output to $TMPDIR/logoutput-sorted Disk Full?"
i guess that aboves introduces some wrong message,
because that it can potenitally fail if the files in $TMPDIR/logoutput/*
contains nothing.
maybe it should be checked before as of aboves dir contains data,
as we check afterwards if $TMPDIR/logoutput-sorted contains data
like:
for file in $TMPDIR/logoutput/*; do
if [ -s $file ]; then
$SORT $TMPDIR/logoutput/* | uniq | se...