Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.68K
1 Posted Topic
#!/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 maxLen=30 # <= ! files=$(ls -lR $arg | grep '[^d]' | …
The End.
ramkmaddela