Forum: Shell Scripting Oct 19th, 2009 |
| Replies: 3 Views: 42,417 #!/bin/bash
if test $# -eq 0 ; then
echo usage: "${0##/*} [Dir name]"
exit
fi
echo 'Search in directory $* for the flienames with length > 30'
for arg in $* ; do
if test -e $arg ; then... |