Search Results

Search: Posts Made By: venkidhadha
2,806
Posted By RudiC
Anyway, here we go. I'm afraid I can't EXACTLY...
Anyway, here we go. I'm afraid I can't EXACTLY replicate your desired output as
- it is NOT an insert (as requested) but an update statement
- the case of line 1 field 2 & 3 don't match the output...
2,459
Posted By shamrock
find . ! -name "*.out" -type f
find . ! -name "*.out" -type f
2,459
Posted By malcolmpdx
find . \! -name \*.out That will match...
find . \! -name \*.out


That will match "." too, so be careful how you process it. You might want to do


find . -type f -a \! -name \*.out


to only find files.
2,459
Posted By methyl
Further to malcolmpdx's valid point. find ....
Further to malcolmpdx's valid point.

find . \( -type f -a ! -name "*.out" \) -print
Showing results 1 to 4 of 4

 
All times are GMT -4. The time now is 09:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy