LDP/LDP/guide/docbook/abs-guide/ex35.sh

9 lines
194 B
Bash

#!/bin/bash
a=/home/heraclius/daily-journal.txt
echo "Basename of /home/heraclius/daily-journal.txt = `basename $a`"
echo "Dirname of /home/heraclius/daily-journal.txt = `dirname $a`"
exit 0