Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
find command problem
Name: spikey Date: August 2, 2003 at 20:25:03 Pacific OS: UNIX CPU/Ram: Intel
Comment:
I always get true for the following if condition. I am probably stating the condition in a wrong way. Can some help me fix the if condition. The following is the script I use. Platform is Unix.
#!/bin/bash if [ $"(find /myfiles/program1 -newer program2)" ];then { echo "Older"; } else { echo "Newer"; } fi
Summary: Hy, Does someone know how to setup "find" command allowing to find all files or directories according to a specific filter whatever case sensitive (I'm working on AIX platform 4.3.3). Example: fi...
Summary: Hi, Anyone knows how to use the 'find' command using a specified depth level within the directoy hierarchy? for instance: find * -type f -name this will search including all subdirectories, is there ...