たとえば、お気に入りのシェルにパイプするだけです。
$ cat my_script.sh
set -x
echo hello
$ cat my_script.sh | sh
+ echo hello
hello
(set -x
実行前に実行しようとしている各ステートメントをシェルに出力させます。これはデバッグに便利ですが、特に問題とは関係ありません - デモ目的のためだけです.)
パイプから stdin を使用できます:
cat my_script.sh | xargs -i <some_command> {}
または:
cat my_script.sh | bash -
または (標準入力から):
bash < my_script.sh