been imported from the :mod:`subprocess` module.
-Replacing /bin/sh shell backquote
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Replacing :program:`/bin/sh` shell command substitution
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code-block:: bash
- output=`mycmd myarg`
+ output=$(mycmd myarg)
becomes::
.. code-block:: bash
- output=`dmesg | grep hda`
+ output=$(dmesg | grep hda)
becomes::
.. code-block:: bash
- output=`dmesg | grep hda`
+ output=$(dmesg | grep hda)
becomes::
library/stdtypes,,::,>>> y = m[::2]
library/stdtypes,,::,>>> z = y[::-2]
library/string,,`,"!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~"
-library/subprocess,,`,"output=`dmesg | grep hda`"
-library/subprocess,,`,"output=`mycmd myarg`"
library/tarfile,,:bz2,
library/tarfile,,:compression,filemode[:compression]
library/tarfile,,:gz,