Search Results

Search: Posts Made By: msridh
1,629
Posted By msridh
Try this way. #!/bin/ksh ...
Try this way.

#!/bin/ksh

MIN_FILE_COUNT=96
GET_PATH=/home/tcsmosr/tcsids; export GET_PATH

FILES_COUNT=`ls $dirname | wc -l`

if [ $FILES_COUNT -gt $MIN_FILE_COUNT ]
then
echo "commands...
2,441
Posted By msridh
Hi, Try this way... Let us say, your...
Hi,

Try this way...

Let us say, your data is in file1 file2 file3 and file4.

--------------------------------------------------------------------------
#!/bin/ksh

rm a1 b1 c1 d1

cat...
2,774
Posted By msridh
Hi, Try following #!/bin/ksh cat...
Hi,

Try following

#!/bin/ksh

cat <filename> | while read record
do

echo $record

done

Best Regards,
Sridhar M
8,959
Posted By msridh
Hi, In Unix-like operating systems,...
Hi,

In Unix-like operating systems, "/dev/null" or "the null device" is a special file that discards all data written to it, and provides no data to any process that reads from it (it returns...
Showing results 1 to 4 of 4

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