If I have a string such as
/home/user/a/directory/myapp.app
or just
/home/user/myapp.app
how can I split this so that I just have two variables (the path and the application)
e.g.
path="/home/user/"
appl="myapp.app"
I've seen numerous examples of splitting strings, but how can I get just the last part, and combine all the rest?
dirname
andbasename
? – Jan 12 '16 at 16:16