Problem:
You need to get the last directory a file is in,
Solution (one of many I'm sure):
using the full filename "/path/to/file/filename.txt"
dirname /path/to/file/filename.txt
this produces /path/to/file, then we use shell replacement as such:
echo ${INPUT##*/}
which produces
file
Top comments (0)