Search Results

Search: Posts Made By: pratham
1,897
Posted By pratham
wat is the o/p of the following command for u : ...
wat is the o/p of the following command for u :


grep -v '^$' tmp


where tmp is the original file containing data and spaces.
1,156
Posted By pratham
does this work for u watch -n 3 -d...
does this work for u


watch -n 3 -d netstat -i | grep vif
1,156
Posted By pratham
hi can u post sample o/p of the command ...
hi can u post sample o/p of the command


watch -n 1 -d netstat -i
1,400
Posted By pratham
try using this code in query.sql instead : ...
try using this code in query.sql instead :


select * from tab1 where number ='&1';
2,232
Posted By pratham
the cut command is working for me as it is ...
the cut command is working for me as it is

cut -d ' ' -f1 abc.txt

try using awk

awk '{print $1}' abc.txt
3,526
Posted By pratham
it seems u want all the lines that begin with...
it seems u want all the lines that begin with TIMEDOUT
if that is the case then u can use this command

grep -i "TIMEDOUT" file.txt

the contents of file.txt wud be something like this :...
1,286
Posted By pratham
u can use the following script if u are using...
u can use the following script if u are using bash
for entry in `cat xyz.txt`
do
path=`echo $entry | cut -d "/" -f2`
mkdir -p $path
cd $path
svn checkout $entry
cd -
done

hope...
Showing results 1 to 7 of 7

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