diff options
Diffstat (limited to 'chapter8/sed.sh')
-rw-r--r-- | chapter8/sed.sh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/chapter8/sed.sh b/chapter8/sed.sh index 6b2d3d7..841ca44 100644 --- a/chapter8/sed.sh +++ b/chapter8/sed.sh @@ -1,12 +1,12 @@ -#!/bin/bash -set -e - -./configure --prefix=/usr --bindir=/bin && - -make && -make html && - -make -j1 install && - -install -d -m755 /usr/share/doc/sed-"${VERSION}" && -install -m644 doc/sed.html /usr/share/doc/sed-"${VERSION}" +#!/bin/bash
+set -e
+
+./configure --prefix=/usr --bindir=/bin &&
+
+make &&
+make html &&
+
+make -j1 install &&
+
+install -d -m755 /usr/share/doc/sed-"${VERSION}" &&
+install -m644 doc/sed.html /usr/share/doc/sed-"${VERSION}"
|