How would I get just the current working directory name in a bash script, or even better, just a terminal command.
pwd gives the full path of the current working directory, e.g. '/opt/local/bin' but I only want 'bin'
|
feedback
|
|
No need for basename, and especially no need for a subshell running pwd (which adds an extra, and expensive, fork operation); the shell can do this internally using parameter expansion:
| |||||
feedback
|
|
| |||||||
feedback
|
|
Just enter it as below:
You will get the info as: /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/bin | ||||
|
feedback
|
|
You can use a combination of pwd and basename. E.g.
| |||||||
feedback
|