|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Problem with double quote and string variable
Hello,
i have a file output.txt which contains a single line with a list of files with quotes : "file1.ext" "file2.ext" "file3.ext" In a shell script, I want to retrieve the line and use it as a variable in a command like : zip archive.zip $LIST I cant get it work. When I physically type the command zip archive.zip "file1.ext" "file2.ext" "file3.ext", it works just fine but when I try to use a string variable I get an error. Is there a proper way to do that? Thank you ! |
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
When you type it on the command line, the double quotes are not passed to zip. If you are using a script (show it!) then if it is passing in the quotes so that zip sees them, stop doing that.
If you have control over the thing which generates the output file, make it use a less zany format. See how xargs does it; that's probably a good model for you. |
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
Quote:
Post your current code (or just the relevant part) for more help. |
|
#4
|
|||
|
|||
|
Quote:
Code:
LIST=$(tail -1 $FILE) cvs log -N -r$rev1:$rev2 $LIST > changelog.txt My file looks like this : Code:
"java/file1.java" "java/file2.java" "java/file3.java" "java/file4.java" "java/file5.java" It is the output of a xslt processing so I do have control on it. I can generate a file which looks like this, without quotes and my script works perfectly : Code:
java/file1.java java/file2.java java/file3.java java/file4.java java/file5.java But I wanted to wrap the filenames around quotes in case some of the filenames contain whitespaces. So maybe I should just work on my xsl stylesheet in order to escape whitespaces in filenames? |
| Sponsored Links | |
|
|
#5
|
|||
|
|||
|
Or if you have the option, make it one file per line (and worry about file names with newlines in them instead ...).
xargs has an option to use a null (ASCII 0x00) terminator for that particular case. (Nulls and slashes are the only two characters which are disallowed in directory entry names.) |
| Sponsored Links | |
|
|
#6
|
|||
|
|||
|
if you want to do this job with script, you can try code as follow: Code:
#!/bin/bash INFILE=output.txt #replace the double quote with space LIST=$(sed -e 's/\"/ /g' $INFILE) zip archive.zip $LIST exit 0 |
| Sponsored Links | |
|
|
#7
|
|||
|
|||
|
Problem with double quote and string variable
Here is a quick fix for your script
LIST=$(tail -1 $FILE) cvs log -N -r$rev1:$rev2 $(eval $LIST) > changelog.txt -Ramesh |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| getting value between double quote | BeefStu | Shell Programming and Scripting | 4 | 09-28-2011 03:16 PM |
| Replacing the string after certain # of double quote | vsairam | Shell Programming and Scripting | 3 | 05-11-2010 07:32 AM |
| Regex in grep to match all lines ending with a double quote (") OR a single quote (') | NanJ | Shell Programming and Scripting | 6 | 08-26-2009 09:28 AM |
| double-quote inside double-quote | indraf | Shell Programming and Scripting | 3 | 10-20-2008 05:53 AM |
| How to get rid of double quote in sed. | anakiar | Shell Programming and Scripting | 6 | 07-28-2008 08:56 AM |
|
|