Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
perl を使用して順次シェル コマンドを実行する必要がありますが、変数を保持するためにシェル環境が必要です。
例えば:
$result = `cd /`; $result = `touch test.txt`;
この例では、test.txt を / に作成する必要があります。
また、 $result= のような 1 行のコードでそれらを実行したくありませんtouch /test.txt。環境変数は同じままですが、シェルを個別に呼び出す必要があります。
touch /test.txt