In awk: unexpected EOF while looking for matching `"'


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting In awk: unexpected EOF while looking for matching `"'
# 1  
Old 05-22-2013
In awk: unexpected EOF while looking for matching `"'

I am trying to get grep with awk command into variable.
But facing error.
Could someone pls help.
Code:
[mhs@flexiaf1 ~]$ cat test_file
DEPLOYMENT="abc"   # com
cluster="bcn"
[mhs@flexiaf1 ~]$ grep DEPLOYMENT test_file | awk -F "\"" '{ print $2 }'
abc
[mhs@flexiaf1 ~]$ a=`echo "grep DEPLOYMENT test_file | awk -F \"\\\"\" '{ print $2 }'"` ; echo $a
-bash: command substitution: line 1: unexpected EOF while looking for matching `"'
-bash: command substitution: line 2: syntax error: unexpected end of file
[mhs@flexiaf1 ~]$


Last edited by Franklin52; 05-22-2013 at 10:14 AM.. Reason: Please use code tags
# 2  
Old 05-22-2013
What is your desired output by using both grep and awk.

If you are trying to get the same result by using awk and sed in variable you can simply right the below line

Code:
v1=$(grep DEPLOYMENT test_file | awk -F "\"" '{ print $2 }'`) ; echo $v1

Rather than using backstick you should be using $() which is more reliable and not very confusing to read.

Last edited by Vikram_Tanwar12; 05-22-2013 at 09:01 AM..
# 3  
Old 05-22-2013
are you trying below?
Code:
 
 
HOME>cat v
DEPLOYMENT="abc" # com
cluster="bcn"
HOME>a="awk -F\"\\\"\" '/DEPLOYMENT/{print \$2}' v"
HOME>eval $a
abc
HOME>

# 4  
Old 05-22-2013
Code:
a=$(awk -F\" '/DEPLOYMENT/ {print $2}' test_file)

Use code tags in your post
# 5  
Old 05-22-2013
Why not...

Code:
a=$(grep DEPLOYMENT test_file | awk -F "\"" '{ print $2 }')
echo $a

Jotne's way is much efficient Smilie
# 6  
Old 05-22-2013
You can simplify it:
Code:
a="awk -F'\"' '/DEPLOYMENT/{ print \$2 }' test_file"

Output:
Code:
$ echo $a
awk -F'"' '/DEPLOYMENT/{ print $2 }' test_file

# 7  
Old 05-23-2013
Hi All,

Thanks for the replies.
Suggest solution works for assigning to varaible. But my issue is different.
Let me explain.

I have file test_file in one unix server. Where it has a line as below
Code:
DEPLOYMENT="abc"   # com

I have an expect script, to execute any command on this unix server. usage of that expect script is
Code:
echo "<command>" | ./sshTargetasroot

Now my task is to fetch "abc" from test_file and read to some varaible, by echoing this command to expect script.
When I tried to read to varaible usng `<command>` I am facing this unexpected EOF error. Directly executing command, I am able to get the value as shown below



Code:
[mhs@flexitaf]$ echo "awk -F'\"' '/DEPLOYMENT/{ print \$2 }' ~/test_file" | ./sshTargetAsRoot
abc
[mhs@flexitaf]$ a=`echo "awk -F'\"' '/DEPLOYMENT/{ print \$2 }' ~/test_file" | ./sshTargetAsRoot`
DEPLOYMENT="abc"   # com
[mhs@flexitaf]$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. SCO

"Unexpected EOF within #IF, #ifdef or #ifndef" error when rebuilding / relinking SCO OpenServer 5

Hi, I am a new Unix Guru with very little experience but have the task of P2Ving an old HP Proliant ML370 G5 server to VMware ESX 4.1 or ESXi 5.5. System seems to boots fine but when trying to remove HP software, configure TCP/IP or a driver, I am receiving: -------- ... (7 Replies)
Discussion started by: dj_Italian
7 Replies

2. Shell Programming and Scripting

Unexpected EOF while looking for matching `'' when ran from a cron job

Since cPanel does not support deleting emails older then X amount of days I am using the following on a Cron Job. find -P /home/user/mail/domain/ -mindepth 2 -mtime '+366' -type f -printf '"%p"\n' | grep -v '/Important' | grep -v '/.Important' | xargs -I {} rm -r "{}" Executing it via SSH... (4 Replies)
Discussion started by: tiagom
4 Replies

3. Shell Programming and Scripting

Unexpected EOF while loooking for matching '"

Hi everyone, I'm really new in shell scripting and having trouble resolving this error. Can someone please tell me why I'm getting these errors? Error Message: ./test.sh: line 50: unexpected EOF while looking for matching `'' ./test.sh: line 53: syntax error: unexpected end of file ... (4 Replies)
Discussion started by: simonirang
4 Replies

4. Shell Programming and Scripting

Help to resolve unexpected EOF while looking for matching `"' error

Hi, can someone kindly look into my copy script and figure out why am i getting a "unexpected EOF while looking for matching `"' error message #!/bin/ksh -x cd /home/goldenga/test/flag37 if ; then rm copied.ok cd /home/goldenga/test Upper=`ls -t|grep 'qw*'|cut -d "w" -f 2|head... (4 Replies)
Discussion started by: NDalal007
4 Replies

5. Shell Programming and Scripting

Unexpected EOF while looking for matching `"'

I have a piece of Linux script. It tells me some syntax error. I couldn't find it. Please help me to identify them. Thanks. The code looks like this: export ORACLE_SID=MYDB export SPW=`cat /opt/oracle/scripts/.sys_pw_$ORACLE_SID` export check_arch=`sqlplus -s << EOF / as sysdba... (7 Replies)
Discussion started by: duke0001
7 Replies

6. Shell Programming and Scripting

eof unexpected while looking[...]

Hello I use opensuse build service to build packages (oh surprise !) I have integrate a command in a spec whose worked and now this exit with: unexpected EOF while looking for matching `"' Command: if \.").mk ]; then ln -s $(pwd)/mozilla/security/coreconf/Linux2.6.mk \ ... (5 Replies)
Discussion started by: posophe
5 Replies

7. Shell Programming and Scripting

line 85: unexpected EOF while looking for matching `"'

hello everyone...im having this problem with unexpected EOF with line 85 which is..i cant see whats wrong with it..can any1 plz help me out. read -p "$p1 please enter the number of tries you wish to have:" lifeline function main() { guessnum=0 read -p "Please... (6 Replies)
Discussion started by: Freakhan
6 Replies

8. Shell Programming and Scripting

Unexpected EOF while looking for matching `"'

Hi everyone, I am trying to search for a string in a file that is partly made up of a variable. Here's the code: echo "parentCategory = $parentCategory" echo "parentCategoryFormatted = $parentCategoryFormatted" numUrlsFoundInParentCategory=`grep -c "<Topic r:id=\"Top\/World\/Français\/"... (2 Replies)
Discussion started by: BlueberryPickle
2 Replies

9. Shell Programming and Scripting

"unexpected end of file" when I´m use EOF inside block if

I have a trouble in my script when i use EOF inside block if. If i use EOF whitout block if I don´t have problem. Guys any ideas? Sorry for my terrible English. #!/bin/sh set -xv HOST='ftp.fiction.com.br' USER='fictionuser' PASS='fictionpass' FILE='ftpteste.txt' busca=`find... (4 Replies)
Discussion started by: ricardo.ludwig
4 Replies

10. UNIX for Advanced & Expert Users

unexpected EOF

I ran the following scripts and everytime i get the errot as follows Line 54: unexpected EOF while looking for matching ',' line 57 syntex error unexpected end of file#!/bin/ksh set -x BKUP_DIR=/u03/backups/abu/nightly_backup LOG_FILE=/u03/backups/abu/backup.log ORACLE_HOME=... (9 Replies)
Discussion started by: manna
9 Replies
Login or Register to Ask a Question