diff options
Diffstat (limited to 'chapter8/gzip.sh')
-rw-r--r-- | chapter8/gzip.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/chapter8/gzip.sh b/chapter8/gzip.sh index f72a689..0cef2c6 100644 --- a/chapter8/gzip.sh +++ b/chapter8/gzip.sh @@ -1,10 +1,10 @@ -#!/bin/bash -set -e - -./configure --prefix=/usr && - -make && - -make -j1 install && - -mv -v /usr/bin/gzip /bin +#!/bin/bash
+set -e
+
+./configure --prefix=/usr &&
+
+make &&
+
+make -j1 install &&
+
+mv -v /usr/bin/gzip /bin
|