I have a variable in bash, which is something like

filenames='file 1
file 2
file 3'

I need to send each line in the above variable's content as a single argument to a program. But I can't get bash to that. Here's what I tried:

python -c 'import sys; print sys.argv' $filenames
['-c', 'file', '1', 'file', '2', 'file', '3']

or

python -c 'import sys; print sys.argv' "$filenames"
['-c', 'file 1\nfile 2\nfile 3']

What I'm expecting is something like this

['-c', 'file 1', 'file 2', 'file 3']

I've tried fiddling with the IFS setting too, but couldn't get it right. Any ideas on this?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Double-evaluating a command with either eval or sh -c can lead to weird bugs if you don't get the extra level of quoting just right. I'd recommend using an array instead, either just by storing the file list as an array to begin with:

filearray=("file 1" "file 2" "file 3")
python -c 'import sys; print sys.argv' "${filearray[@]}"

or by converting it from newline-delimited string to an array:

filenames='file 1
file 2
file 3'
oldIFS="$IFS"; IFS=$'\n'
filearray=($filenames)
IFS="$oldIFS"
python -c 'import sys; print sys.argv' "${filearray[@]}"
link|improve this answer
+1 This is the perfect solution I've been wanting. Thanks a bunch. – Shrikant Sharat Feb 12 at 17:49
feedback
$ export filenames="file 1
file 2
file 3"
$ echo "$filenames" | xargs -d\\n python -c 'import sys; print sys.argv'
['-c', 'file 1', 'file 2', 'file 3']

Another way using read instead of xargs:

#!/bin/bash
filenames="file 1
file 2
file 3"
cmd="python -c 'import sys; print sys.argv; print sys.stdin.readlines()'"
while read file
do
    args="$args \"$file\""
done < <(echo "$filenames")
echo $cmd $args
echo `echo hi | sh -c "$cmd $args"`

Output:

$ ./test.sh 
python -c 'import sys; print sys.argv; print sys.stdin.readlines()' "file 1" "file 2" "file 3"
['-c', 'file 1', 'file 2', 'file 3'] ['hi\n']
link|improve this answer
whoa! I thought xargs runs the command once for each line of input, no? – Shrikant Sharat Feb 12 at 10:12
Also, I need something else to be going in the stdin of the python command, so I don't think this'll do it in its current form. – Shrikant Sharat Feb 12 at 10:14
Nope, you would need to use the -n1 option to get that behavior. By default it uses as many arguments as will fit in a line for each invocation (you can redefine "fit" with the -s and -n options). – perelman Feb 12 at 10:15
2  
Ah, eval. I had a feeling this'd be the solution. Also, the while loop can be turned to this: args="$(echo "$filenames" | sed 's/^\|$/"/g' | tr '\n' ' ')" :) – Shrikant Sharat Feb 12 at 10:59
feedback

Just to add another option,

OLDIFS=$IFS
IFS='
'
set -- $filenames
python -c 'import sys; print sys.argv; print sys.stdin.readlines()' "$@"
IFS=$OLDIFS

Edit: Add code to save old value in OLDIFS and restore it afterwards. IFS='whatever' set -- $var on a single line does not work.

link|improve this answer
And I was trying IFS="\n" and the like, #facepalm. Thanks. – Shrikant Sharat Feb 12 at 17:39
In bash, $'\n' is a literal newline. – tripleee Feb 12 at 17:46
Hm, I remember trying that too. Oh well. – Shrikant Sharat Feb 12 at 17:47
feedback

Yet another option:

while read line ; do
  python -c 'import sys; print sys.argv' $line;
done <(echo $filenames)
link|improve this answer
Wouldn't any newlines be mutilated because of the echo without quoting? – tripleee Feb 12 at 19:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.