Search Results

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

Guru.
2,064
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,064
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,713
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,580
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 04:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy