upilliappan
MIS
Hi
I am having the following find commnand to find logfiles which are greater than 100k in size and list them
find /oracle \( -name "*.log" -a ! -name "alert_*" \) -o -name "*.trc" -o -name "*.trw" -o -name "core.*" -type f -size +100k | xargs ls -l .
The output from the command contains files which are less than 100k.
Since this is a complex expression are we facing this issue ? Any workarounds ?
Regards
Upilli
I am having the following find commnand to find logfiles which are greater than 100k in size and list them
find /oracle \( -name "*.log" -a ! -name "alert_*" \) -o -name "*.trc" -o -name "*.trw" -o -name "core.*" -type f -size +100k | xargs ls -l .
The output from the command contains files which are less than 100k.
Since this is a complex expression are we facing this issue ? Any workarounds ?
Regards
Upilli