パイプラインでスクリプトを結合する方法 シェルスクリプトを使用したパイプラインの結合例:#!/bin/bash # スクリプト1の実行結果をスクリプト2に渡す output=$(./script1.sh) ./script2.sh "$output">>More