summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-02-27 23:03:57 +0000
committerRoland McGrath <roland@gnu.org>1999-02-27 23:03:57 +0000
commit96ad81c3bbf8f0d432b050d4f15f940951e3c488 (patch)
treecebea916d967eb8d687005b177b569b20e283785 /utils
parentd99c719a48f456a283aef18031f92e4996ee641d (diff)
1999-02-17 Roland McGrath <roland@baalperazim.frob.com>
* mount.sh: Use `awk' instead of `gawk'.
Diffstat (limited to 'utils')
-rwxr-xr-xutils/mount.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mount.sh b/utils/mount.sh
index a403b8d8..25ec0c94 100755
--- a/utils/mount.sh
+++ b/utils/mount.sh
@@ -38,7 +38,7 @@ esac
case $# in
1)
# Lookup the given single arg in /etc/fstab for the rest of the args
- args=`gawk -f - $fstab <<END
+ args=`awk -f - $fstab <<END
\\$1 == "$1" || \\$2 == "$1" {
for (i = 4; i <= NF; i++)
printf("%s ", \\$i);