Search Results

Search: Posts Made By: subramanian
65,108
Posted By subramanian
if the script is not in your path then you may...
if the script is not in your path then you may get this error message.
you must precede with ./ when executing the script from the current working directory.
verify that it has execute permission....
1,323
Posted By subramanian
File Parser
Hi

need help parsing a file.

I have tag fields and values in a file with delimiter |.

sample records from the file listed below...
2,996
Posted By subramanian
please check your .login and .cshrc files. i...
please check your .login and .cshrc files. i think c shell uses these two files to set user preferences.
Forum: Solaris 11-20-2012
1,965
Posted By subramanian
head -n +3 filename; tail -n -3 filename ...
head -n +3 filename; tail -n -3 filename
-----------
Tablespace Size (GB) Free (GB) % Free % Used
------------------------------ ---------- ---------- ----------
WMHAPP_DS 8.93 7.19 80 20...
50,563
Posted By subramanian
dt="11/20/12" echo $dt 11/20/12 ...
dt="11/20/12"
echo $dt
11/20/12
new_dt=`echo $dt | awk -F'/' '{ print "20"$3"/"$2"/"$1 }' | sed 's#\/#\\\/#g'`
echo $new_dt
2012\/20\/11
nawk '/'"$new_dt"'/,EOF { print $0 }'...
8,121
Posted By subramanian
try this (cat body ; uuencode attch1 attch1) |...
try this
(cat body ; uuencode attch1 attch1) | mailx -m -s "testing" "abc@gmail.com"
50,563
Posted By subramanian
print section of file from regular expression to...
print section of file from regular expression to end of file
awk '/2012\/20\/11/,EOF { print $0 }' filename
2,200
Posted By subramanian
Hi escape ! and $ chars. it will work. ...
Hi
escape ! and $ chars. it will work.

ssh ${fmsServerUserName}@${fmsServerName} "awk -F, '\!c[\$3]++' 10_FMS_CRXtoFMS.csv" >> 10_FMS_CRXtoFMS.csv
1,820
Posted By subramanian
you can try this.. nawk ' ( ($1!~/[A-Za-z0-9]/...
you can try this..
nawk ' ( ($1!~/[A-Za-z0-9]/ || $2!~/[A-Za-z0-9]/ || $3!~/[A-Za-z0-9]/ ) || ( $3==0 || ( ($3<10 && $3>180) || ($3>=1 && $3<=9) ))) { print $0 }' InputFile.txt
ABCDE4 JFHFJFJF6 -...
Showing results 1 to 9 of 9

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