Search Results

Search: Posts Made By: Sriranga
7,908
Posted By itkamaraj
myvar=$(awk -F"|" '$16==""{x++;}END{print x}'...
myvar=$(awk -F"|" '$16==""{x++;}END{print x}' file)
echo $myvar
7,908
Posted By guruprasadpr
awk -F"|" '$16==""{x++;}END{print x}' file ...
awk -F"|" '$16==""{x++;}END{print x}' file

Guru.
2,061
Posted By anurag.singh
path1="/xyz/abc/123/$1" No space on either side...
path1="/xyz/abc/123/$1"
No space on either side of equal sign.
If still doesn't work, Pls post the code and the error you get.
2,061
Posted By clx
Try: for dir in /xyz/abc/123/qwe...
Try:

for dir in /xyz/abc/123/qwe /xyz/dfe/123/qwe /xyz/ghi/123/qwe
do
mkdir -p $dir/dirA $dir/dirB $dir/dirC $dir/dirD $dir/dirE
done
3,701
Posted By methyl
Don't forget to export the environment variables....
Don't forget to export the environment variables. We are setting them for the benefit of the processes we call (e.g. "sqlplus").
Also it is much better to find "sqlplus" through unix PATH. The same...
4,571
Posted By clx
Which OS do you have? for HP-UX, try this ...
Which OS do you have?

for HP-UX, try this

(echo 'this mail has attachment';uuencode output.csv output.csv) | mailx -m -s 'test mail' xyz@abc.com

If linux, try this,

echo 'this mail has...
Showing results 1 to 6 of 6

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