up vote 20 down vote favorite
6
share [g+] share [fb]

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'

link|improve this question

feedback

5 Answers

up vote 34 down vote accepted

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:

${PWD##*/}
link|improve this answer
What is the difference between ${PWD##*/} and $PWD? – Mr_Chimp Nov 22 '11 at 12:34
@Mr_Chimp the former is a parameter expansion operations which trims the rest of the directory to provide only the basename. I have a link in my answer to the documentation on parameter expansion; feel free to follow that if you have any questions. – Charles Duffy Nov 25 '11 at 14:07
feedback

Use the basename program. For your case::

% basename $PWD
bin
link|improve this answer
feedback

$ echo ${PWD##*/}

link|improve this answer
1  
The correct answer, but I believe I beat you to it. :) – Charles Duffy Sep 3 '09 at 3:24
Si. If it were a harder question I would say GMTA :-) – DigitalRoss Sep 3 '09 at 3:56
feedback

Just enter it as below:

echo $PWD

You will get the info as:

/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/bin

link|improve this answer
feedback

You can use a combination of pwd and basename. E.g.

#!/bin/bash

CURRENT=`pwd`
BASENAME=`basename $CURRENT`

echo $BASENAME

exit;
link|improve this answer
1  
Please, no. The backticks create a subshell (thus, a fork operation) -- and in this case, you're using them twice! [As an additional, albeit stylistic quibble -- variable names should be lower-case unless you're exporting them to the environment or they're a special, reserved case]. – Charles Duffy Sep 3 '09 at 3:26
and as a second style quibble backtics should be replaced by $(). still forks but more readable and with less excaping needed. – Jeremy Wall Sep 3 '09 at 21:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.