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'
|
1
|
|
|
|
|
|
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:
|
|||
|
|
|
|
|
||||||
|
|
|
You can use a combination of pwd and basename. E.g.
|
||||||
|
|
|
Use the
|
|||
|
|