author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Mon, 22 Feb 2016 13:02:27 +0200 | |
changeset 1907 | f4b078cbff20 |
parent 1905 | fba288d59662 |
child 1912 | 8b81a8f0f692 |
permissions | -rw-r--r-- |
1129 | 1 |
.. -*- coding: utf-8; -*- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1130
diff
changeset
|
2 |
.. include:: HEADER.rst |
1129 | 3 |
|
4 |
======== |
|
5 |
Shell. |
|
6 |
======== |
|
7 |
.. contents:: |
|
1905
fba288d59662
Include only local subsections into TOC. This prevent duplication of
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1334
diff
changeset
|
8 |
:local: |
1129 | 9 |
|
10 |
Quoting. |
|
11 |
======== |
|
12 |
||
13 |
http://www.mpi-inf.mpg.de/~uwe/lehre/unixffb/quoting-guide.html |
|
14 |
A Guide to Unix Shell Quoting |
|
15 |
||
16 |
Portability. |
|
17 |
============ |
|
18 |
||
19 |
http://code.dogmap.org/lintsh/ |
|
20 |
lintsh is a Bourne shell that optionally warns about suspicious |
|
21 |
or nonportable constructs |
|
1130
24f389eeb157
Portable Shell Programming
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1129
diff
changeset
|
22 |
http://www.gnu.org/software/autoconf/manual/html_node/Portable-Shell.html |
24f389eeb157
Portable Shell Programming
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1129
diff
changeset
|
23 |
Portable Shell Programming |
1129 | 24 |
|
25 |
Kill processes after timeout. |
|
26 |
============================= |
|
27 |
:: |
|
28 |
||
29 |
$ yes xxx& p1=$! ; yes ===& p2=$! ; sleep 2; kill $p1; kill $p2 |
|
30 |