summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
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);