author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 07 Feb 2012 16:42:08 +0200 | |
changeset 1213 | 06623bbdb097 |
parent 1130 | 24f389eeb157 |
child 1334 | 9bf0d5a1f0cf |
permissions | -rw-r--r-- |
1129 | 1 |
.. -*- coding: utf-8; -*- |
2 |
||
3 |
======== |
|
4 |
Shell. |
|
5 |
======== |
|
6 |
.. contents:: |
|
7 |
||
8 |
Quoting. |
|
9 |
======== |
|
10 |
||
11 |
http://www.mpi-inf.mpg.de/~uwe/lehre/unixffb/quoting-guide.html |
|
12 |
A Guide to Unix Shell Quoting |
|
13 |
||
14 |
Portability. |
|
15 |
============ |
|
16 |
||
17 |
http://code.dogmap.org/lintsh/ |
|
18 |
lintsh is a Bourne shell that optionally warns about suspicious |
|
19 |
or nonportable constructs |
|
1130
24f389eeb157
Portable Shell Programming
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1129
diff
changeset
|
20 |
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
|
21 |
Portable Shell Programming |
1129 | 22 |
|
23 |
Kill processes after timeout. |
|
24 |
============================= |
|
25 |
:: |
|
26 |
||
27 |
$ yes xxx& p1=$! ; yes ===& p2=$! ; sleep 2; kill $p1; kill $p2 |
|
28 |