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.
基本的にシェルでは、このようなコマンド置換を行います
a=`uname -a`
それでは、perlでどのように行うのですか?
$a = qx( uname -a )
演算子はバックティックと同じですが、qxはるかに読みやすくなっています。
qx
Perlでもほとんど同じです-
$a = `uname -a`;
しかし、@ William Purcellが言うようにqx、同じで読みやすくなっています。