Search notes:

Script: mnt

#!/bin/sh
#
# Be easy on the eye when showing mounts
#

echo
mount | grep '^\/dev' | awk '{print $1 " " $3}' | column -t
echo
Github repository scripts-and-utilities, path: /mnt

See also

The shell commands mount and column.
Scripts

Index