view bin/example/script-path.sh @ 850:c44637991a01

[mountusb] docstring
author Jeff Hammel <k0scist@gmail.com>
date Sun, 10 Dec 2017 09:59:24 -0800
parents 3da85ac3c54f
children
line wrap: on
line source

#!/bin/bash

# echoes path to this script (example)

echo "argv[0]: $0"
path=`readlink -f $0`
echo "path: ${path}"
echo "basename: $(basename $0)"