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.
myPython.py && myBash.sh の 2 つのファイルを取得しました。
myPython.py を XML ファイルに出力し、myBash.sh がこの XML ファイルを入力として受け取り、それに対して sth を実行したいと考えています。
コンソールでやりたいことはこんな感じ
myPython.py | myBash.sh
問題は、Python ファイルで値を返す方法です。また、パイプラインで myBash.sh の XML ファイルを受け取る方法は?
ありがとう
単純な「印刷」を行うだけであれば、うまくいくはずです。例えば:
python -c 'print "foo"' | cat