I have many file paths in a file that look like so:
/home/rtz11/files/testfiles/547/prob547455_01
I want to use a bash script that will print all the filenames to the screen, basically whatever comes after the last /
. I don't want to assume that it would always be the same length because it might not be.
Would there be a way to delete everything before the last /
? Maybe a sed
command?
/
, or only content prior to it? – Bullfrog