vote up 3 vote down star
1

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'

flag

4 Answers

vote up 13 vote down check

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|flag
vote up 2 vote down

$ echo ${PWD##*/}

link|flag
1  
The correct answer, but I believe I beat you to it. :) – Charles Duffy Sep 3 at 3:24
Si. If it were a harder question I would say GMTA :-) – DigitalRoss Sep 3 at 3:56
vote up 0 vote down

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

#!/bin/bash

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

echo $BASENAME

exit;
link|flag
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 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 at 21:17
vote up 1 vote down

Use the basename program. For your case::

% basename $PWD
bin
link|flag

Your Answer

Get an OpenID
or

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