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: [-H | -L] path-list predicate
Name: trichyselva Date: December 12, 2007 at 22:46:40 Pacific OS: windowsxp CPU/Ram: p4 Product: pentium
Comment:
i want to find the file msk_Rco_ijkl_20070925_033743.Z i am using the below command but it is returning with the below metioned error how to solve it
Summary: Hi, I have script which searches a specified directory for a particular file. I pass in 2 parameters into the script, the path and the filename. The problem is that I can only pass in the exact file n...
Summary: I have a directory sturucture as below /appl/export/ivdevl/comp /appl/export/ivdevl/comp/buildscripts /appl/export/ivdevl/comp/buildscripts/pkg.sh /appl/export/ivdevl/release /appl/export/ivdevl/comp/...
Summary: Also you might try grep -l which lists the file name only, rather than listing all the matching lines. An alternative to xargs is to nest commands e.g: grep -l 'SPA' $(find path -type f) One advantage...