vote up 1 vote down star

Hi,

I'm well aware of the source (aka .) utility, which will take the contents from a file and execute them within the current shell.

Now, I'm transforming some text into shell commands, and then running them, as follows:

$ ls | sed ... | sh

ls is just a random example, the original text can be anything. sed too, just an example for transforming text. The interesting bit is sh. I pipe whatever I got to sh and it runs it.

My problem is, that means starting a new sub shell. I'd rather have the commands run within my current shell. Like I would be able to do with source some-file, if I had the commands in a text file.

I don't want to create a temp file because feels dirty.

Alternatively, I'd like to start my sub shell with the exact same characteristics as my current shell.

update

Ok, the solutions using backtick certainly work, but I often need to do this while I'm checking and changing the output, so I'd much prefer if there was a way to pipe the result into something in the end.

sad update

Ah, the /dev/stdin thing looked so pretty, but, in a more complex case, it didn't work.

So, I have this:

find . -type f -iname '*.doc' | ack -v '\.doc$' | perl -pe 's/^((.*)\.doc)$/git mv -f $1 $2.doc/i' | source /dev/stdin

Which ensures all .doc files have their extension lowercased.

And which incidentally, can be handled with xargs, but that's besides the point.

find . -type f -iname '*.doc' | ack -v '\.doc$' | perl -pe 's/^((.*)\.doc)$/$1 $2.doc/i' | xargs -L1 git mv

So, when I run the former, it'll exit right away, nothing happens.

flag

51% accept rate
Does your complex command work when you pipe to a temp file first and then source it? If not, what's the problem with the generated output? The output of your command won't work if your filenames have spaces in them or if certain sequences aren't escaped properly. I'd want to add quotes around $1 and $2.doc at a minimum. – Kaleb Pederson Aug 14 at 23:22
Is there any good reason for having to run this in the original shell ? - these examples doesn't manipulate the current shell so you gain nothing by doing so. The quick solution is you redirect output to a file and source that file though – nos Aug 14 at 23:43
@kaleb the output runs fine. in this particular case, even if i pipe to sh. the file names are space-safe, but thanks for noting. @nos git environment variables on the original shell. and again, these are just examples. the question is for life. – kch Aug 15 at 9:30

5 Answers

vote up 3 vote down check
$ ls | sed ... | source /dev/stdin

UPDATE: This works in bash 4.0, as well as tcsh, and dash (if you change source to .). Apparently this was buggy in bash 3.2. From the bash 4.0 release notes:

Fixed a bug that caused `.' to fail to read and execute commands from non-regular files such as devices or named pipes.

link|flag
That's clever. I like it. – kch Aug 14 at 20:46
Ok. On to bash 4.0 then. – kch Aug 15 at 9:25
Oh, and since you're listing the shells, it works in zsh too. – kch Aug 15 at 9:35
vote up 2 vote down

The eval command exists for this very purpose.

eval $( ls | sed... )

More from the bash manual:

eval

          eval [arguments]

The arguments are concatenated together into a single command, which is then read and executed, and its exit status returned as the exit status of eval. If there are no arguments or only empty arguments, the return status is zero.

link|flag
The only issue here is that you may need to insert ;'s to separate your commands. I use this method myself to work on AIX, Sun, HP, and Linux. – Tanktalus Aug 17 at 22:25
Tanktalus: No, you don't. Eval really interprets the string as a script, with newlines separating commands. There is no need to use semicolons. – Juliano Aug 18 at 16:33
In fact, I would like to know why the accepted answer was the hack of piping output to source instead of this one, that suggests the proper command that exists for this very purpose. – Juliano Aug 18 at 16:35
vote up -1 vote down

Why not use source then?

$ ls | sed ... > out.sh ; source out.sh
link|flag
He mentioned that temp files are icky. – chaos Aug 14 at 20:23
Oh yeah, missed that :(. – Kaleb Pederson Aug 14 at 20:41
vote up 2 vote down
`ls | sed ...`

I sort of feel like ls | sed ... | source - would be prettier, but unfortunately source doesn't understand - to mean stdin.

link|flag
Yea, I tried that. That's so wrong of source – kch Aug 14 at 20:22
after seeing mark4o's answer, doesn't it feel like it was right in our faces all this time? – kch Aug 14 at 20:47
Heh, yeah. I never remember that that stuff exists. – chaos Aug 14 at 20:51
vote up 2 vote down

I think your solution is command substitution with backticks: http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_04.html

See section 3.4.5

link|flag
3  
If you're using bash the $( ) syntax might be preferred. 'Course backticks work in more shells... – dmckee Aug 14 at 21:53
3  
$(command) and $((1+1)) work in all posix shells. I think many are put off by vim marking them as syntax errors, but that's just because vim is highlighting for the original Bourne shell which very few use. To get vim to highlight correctly put this in your .vimrc: let g:is_posix = 1 – pixelbeat Aug 15 at 0:58

Your Answer

Get an OpenID
or

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