This command in a shell script removes unwanted log files.

for i in $( echo *.Log ); do 
  /bin/rm $i; 
  echo "Removed $i." 
done

In the edge case of no matching files, rm complains.
/bin/rm: cannot remove `*.Log': No such file or directory

If echo is replaced with ls, it complains when there 
is no match.

Does anyone have a tidy solution for this task?

Thanks,                   ... Peter E.



-- 
123456789 123456789 123456789 123456789 123456789 123456789 123456789 12
Tel +1 360 639 0202   http://carnot.yi.org/   Bcc: peter at easthope. ca


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/E1Y384k-00023W-S0@armada.invalid

Reply via email to