view bin/example/script-path.sh @ 779:a3a83eda831c

mv to own repo for demo purposes
author Jeff Hammel <k0scist@gmail.com>
date Thu, 14 Jul 2016 12:26:19 -0700
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)"