Search Results

Search: Posts Made By: shipra_31
1,708
Posted By shipra_31
ll subdirectory/*.*a*
ll subdirectory/*.*a*
20,152
Posted By shipra_31
true ... just wrote out of habit :)
true ... just wrote out of habit :)
20,152
Posted By shipra_31
sed 's/$/ /g' input
sed 's/$/ /g' input
6,135
Posted By shipra_31
From the parent directory u can run ...
From the parent directory u can run


find . -name <script_name> | ksh
18,839
Posted By shipra_31
try using echo "testing 1 2 3 " | mail...
try using


echo "testing 1 2 3 " | mail -s "subject" abc.com -- -f abc. (shipraa@amdocs.com)com
1,076
Posted By shipra_31
probably this may help DEVENS...
probably this may help


DEVENS /oravl01/oracle/shipraa > sed 's/[A-Za-z0-9]*\.[A-Za-z0-9]*\.com//g' sample
This is a test file. This is an email address: . This is another line
This is...
3,184
Posted By shipra_31
echo "2.326227180240883E7 / 8.509366417956961E8" ...
echo "2.326227180240883E7 / 8.509366417956961E8" |awk -F "/" '{print $1 / $2 }'
0.0273373
1,647
Posted By shipra_31
echo "1234567890 abc 1234" | awk -F "[a-zA-Z]*"...
echo "1234567890 abc 1234" | awk -F "[a-zA-Z]*" '{print $1 $2}'

if u have the character in a file then
awk -F "[a-zA-Z]*" '{print $1 $2}' sample.txt
where $1 will be before the pattern and $2...
1,647
Posted By shipra_31
you may try something like this echo "aB12Cd" ...
you may try something like this
echo "aB12Cd" | tr -dc '[a-zA-Z]'
1,133
Posted By shipra_31
i think the problem is with spaces try...
i think the problem is with spaces

try removing them
for i in 1 2 3 4 5 6 7 8
do
j=`expr $i + 3`;
x=`head -$j temp1|tail -1|cut -f24 -d","`;
y=`head -$j temp1|tail -1|cut -f25 -d","`;...
2,747
Posted By shipra_31
probably not the best way ...but this may work ...
probably not the best way ...but this may work


say sample is the file which is having input then

rm -rf one.txt output.txt
grep -i user sample >one.txt
for i in `cat one.txt`
do
...
Showing results 1 to 11 of 11

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