Search Results

Search: Posts Made By: NPRao
3,489
Posted By NPRao
You are correct Alister :) interesting...
You are correct Alister :)
interesting confusing thread ;)
3,489
Posted By NPRao
pseudocoder is correct. Dallas, Try...
pseudocoder is correct.

Dallas,

Try this, it worked for me. This one considers the files in all the sub-directory level too.

#/bin/ksh
#set -vx

typeset -i fsize
typeset -i smallfiles...
3,489
Posted By NPRao
You can find more information using the man find...
You can find more information using the man find command for its usage.

Refer the '.' by your 'path'. In your example,

find /home/student/dir1 -type f -1024c


You can change the size to...
3,489
Posted By NPRao
Try this - #/bin/ksh #set -vx for...
Try this -

#/bin/ksh
#set -vx

for fname in `find . -type f -size -1024c`
do
echo $fname
done
3,627
Posted By NPRao
We had a similar requirement and here is the...
We had a similar requirement and here is the script, which used the option grep -f for the pattern file.

#/bin/ksh -vx
#set -vx

if [ $# -ne 4 ]
then
echo "Usage: $0 <Path>...
Forum: HP-UX 07-29-2005
45,501
Posted By NPRao
I found ifconfig in /usr/sbin on our HP-UX
I found ifconfig in /usr/sbin on our HP-UX
3,905
Posted By NPRao
You have to redirect the output to a file using -...
You have to redirect the output to a file using -

spool /app/common/home/nprao/mesg.txt
10,158
Posted By NPRao
Check man glance and you can use these options - ...
Check man glance and you can use these options -

What's EOT ?
3,093
Posted By NPRao
You can also check a different option for find...
You can also check a different option for find command -


For example -

EDIDIR=${LMS_EDI_IN}/${COMP}/${DIR}
FTPDIR=${LMS_VAR}/ftp/${COMP}/${DIR}...
8,190
Posted By NPRao
Did you try to use find command with different...
Did you try to use find command with different options like -
Showing results 1 to 10 of 10

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