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.
コマンドセットの出力をシェルスクリプトの変数に保存しようとしています。明らかなバックティックと評価は失敗しています。誰かがこれで私を助けてくれますか?
の出力を保存したい
head -"$errno" tmptmptmp2 | tail -1 | sed 's/,//'
変数に。
コマンドは正常に動作します。
できるよ:
var=$(head -"$errno" tmptmptmp2 | tail -1 | sed 's/,//')
In developing a class that should handle various generic lambda expressions, I fell into a rather familiar hole: I had a MyClass<T> class, and I tried to cast MyC
MyClass<T>
MyC