Skip to content
Advertisement

Pipe into a shell/bash script from Web URL

How to download a script from URL, execute it, and pipe something into it – all with one command?

I have a shell script to which I can pipe stuff:

JavaScript

The script is moved to http://example.com/do-stuff.sh

Try to do something like this:

JavaScript

but it doesn’t work. Data does not get piped into the script.

There is a workaround, but how to do it with one line without creating files?

JavaScript

Advertisement

Answer

Try

JavaScript

This needs to be run in bash or zsh or ksh due to the process substitition.

The reason why yours isn’t working is that the sh process’s stdin channel is already consumed by reading the source code, so you can’t pipe data into it.

The process substitution acts like a file, so sh can get the source from the “file” and still read data from stdin.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement