diff options
Diffstat (limited to 'chapter8/findutils.sh')
-rw-r--r-- | chapter8/findutils.sh | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/chapter8/findutils.sh b/chapter8/findutils.sh index 255591c..b28409c 100644 --- a/chapter8/findutils.sh +++ b/chapter8/findutils.sh @@ -1,12 +1,12 @@ -#!/bin/bash -# shellcheck disable=SC2016 - -./configure --prefix=/usr --localstatedir=/var/lib/locate && - -make && - -make -j1 install && - -mv -v /usr/bin/find /bin && - -sed -i 's|find:=${BINDIR}|find:=/bin|' /usr/bin/updatedb +#!/bin/bash
+# shellcheck disable=SC2016
+
+./configure --prefix=/usr --localstatedir=/var/lib/locate &&
+
+make &&
+
+make -j1 install &&
+
+mv -v /usr/bin/find /bin &&
+
+sed -i 's|find:=${BINDIR}|find:=/bin|' /usr/bin/updatedb
|