I'm trying to write a small script to change the current directory to my project directory:

#!/bin/bash
cd /home/tree/projects/java

I saved this file as proj, changed the chmod, copied it to /usr/bin. When I call it by: proj, it does nothing. What am I doing wrong?

link|improve this question

feedback

13 Answers

up vote 61 down vote accepted

Shell scripts are run inside a subshell, and each subshell has its own concept of what the current directory is. The cd succeeds, but as soon as the subshell exits, the previous current directory is restored.

One way to get around this is to use an alias instead:

alias proj="cd /home/tree/projects/java"
link|improve this answer
17  
Technically, the previous directory isn't restored. For your interactive shell, the change never happened. It only happened for the subshell. – S.Lott Nov 1 '08 at 2:10
5  
The alias goes in ~/.bash_profile and/or in ~/.bashrc – Federico Ramponi Nov 1 '08 at 2:13
Aliases aren't so flexible to manage or change. In case of many 'cd's, scripts could be better. – Thevs Nov 1 '08 at 4:30
5  
Functions are more flexible than aliases, so that's where you'd look next when aliases aren't enough. – ephemient Nov 1 '08 at 4:40
3  
Jonathan: while that's true, it's not really related to the question. Answers on SO would get twice as long if they had to each list the corresponding deficiencies in MS-DOS! – Greg Hewgill Nov 4 '08 at 23:52
show 3 more comments
feedback

Nothing. You've changed the directory, but only within the subshell that runs the script.

You can run the script in your current process with the "dot" command:

. proj

But I'd prefer Greg's suggestion to use an alias in this simple case.

link|improve this answer
5  
dot command: i learned something new today! – DarenW Nov 1 '08 at 4:11
7  
. is also spelled source, choose whichever you find more memorable. – ephemient Nov 1 '08 at 4:41
5  
@Ephemient: Good pointsource That explains why it workssource Also proves that laziness-not necessity-is often the mother of inventionsource – Adam Liss Nov 1 '08 at 18:24
3  
@ephemient: note that source is used in C shell and Bash; it is not supported in POSIX or Korn shells, nor in classic Bourne shell. – Jonathan Leffler Nov 24 '08 at 4:40
feedback

Jeremy Ruten's idea of using a symlink triggered a thought that hasn't crossed any other answer. Use:

CDPATH=:$HOME/projects

The leading colon is important; it means that if there is a directory 'dir' in the current directory, then 'cd dir' will change to that, rather than hopping off somewhere else. With the value set as shown, you can do:

cd java

and, if there is no sub-directory called java in the current directory, then it will take you directly to $HOME/projects/java - no aliases, no scripts, no dubious execs or dot commands.

My $HOME is /Users/jleffler; my $CDPATH is:

:/Users/jleffler:/Users/jleffler/mail:/Users/jleffler/src:/Users/jleffler/src/perl:/Users/jleffler/src/sqltools:/Users/jleffler/lib:/Users/jleffler/doc:/Users/jleffler/work
link|improve this answer
feedback

The cd is done within the scripts' shell, the shell exits, and then you are left in the directory you were... source the script, don't run it. instead of:

# ./myscript.sh

do

# . ./myscript.sh

(notice the dot, space, and script name)

link|improve this answer
This is cool, and probably good to know. What does the latter do exactly though (how does it work)? This is probably the best solution on this thread. – Jonah Mar 13 at 20:40
feedback

The cd in your script technically worked as it changed the directory of the shell that ran the script, but that was a separate process forked from your interactive shell.

A Posix-compatible way to solve this problem is to define a shell procedure rather than a shell-invoked command script.

jhome () {
  cd /home/tree/projects/java
}

You can just type this in or put it in one of the various shell startup files.

link|improve this answer
2  
That's the cleanest way to do it. I wonder why your answer isn't getting any bumps... +1 from me. – brice Aug 24 '11 at 14:54
Oh, no doubt because I was almost 3 years late with the answer. (I should possibly add that alias is also Posix-specified.) – DigitalRoss Aug 25 '11 at 13:20
feedback

To make a bash script that will cd to a select directory :

Create the script file

#!/bin/sh
# file : /scripts/cdjava
#
cd /home/askgelal/projects/java

Then create an alias in your startup file.

#!/bin/sh
# file /scripts/mastercode.sh
#
alias cdjava='. /scripts/cdjava'

  • I created a startup file where I dump all my aliases and custom functions.
  • Then I source this file into my .bashrc to have it set on each boot.

For example, create a master aliases/functions file: /scripts/mastercode.sh
(Put the alias in this file.)

Then at the end of your .bashrc file:

source /scripts/mastercode.sh



Now its easy to cd to your java directory, just type cdjava and you are there.

link|improve this answer
+1 One of the best answers here, should be way higher up. – Oliver Weiler Dec 21 '11 at 10:04
feedback

When you fire a shell script, it runs a new instance of that shell (/bin/bash). Thus, your script just fires up a shell, changes the directory and exits. Put another way, cd (and other such commands) within a shell script do not affect nor have access to the shell from which they were launched.

link|improve this answer
feedback

It only changes the directory for the script itself, while your current directory stays the same.

You might want to use a symbolic link instead. It allows you to make a "shortcut" to a file or directory, so you'd only have to type something like cd my-project.

link|improve this answer
Having that symlink in every directory would be a nuisance. It would be possible to put the symlink in $HOME and then do 'cd ~/my-project'. Frankly, though, it is simpler to use CDPATH. – Jonathan Leffler Nov 1 '08 at 5:56
feedback

to navigate directories quicky, there's $CDPATH, cdargs, and ways to generate aliases automatically

http://jackndempsey.blogspot.com/2008/07/cdargs.html

http://muness.blogspot.com/2008/06/lazy-bash-cd-aliaes.html

http://articles.techrepublic.com.com/5100-10878_11-5827311.html

link|improve this answer
feedback

You can combine an alias and a script:

alias proj='cd \`/usr/bin/proj !*\`"

provided that the script echos the destination path. Note that those are backticks surrounding the script name.

For example, your script could be

#!/bin/bash
echo /home/askgelal/projects/java/$1

The advantage with this technique is that the script could take any number of command line parameters and emit different destinations calculated by possibly complex logic.

link|improve this answer
feedback

You can do following:

#!/bin/bash
cd /your/project/directory
# start another shell and replacing the current
exec /bin/bash

EDIT: This could be 'dotted' as well, to prevent creation of subsequent shells.

Example:

. ./previous_script  (with or without the first line)
link|improve this answer
That gets rather messy after a few runs.. You will have to exit (or ctrl+d) several times to exit the shell, for example.. An alias is so much cleaner (even if the shell command outputs a directory, and it cd's to the output - alias something="cd getnewdirectory.sh") – dbr Nov 1 '08 at 3:15
Note the 'exec'. It makes replace of old shell. – Thevs Nov 1 '08 at 4:06
The exec only replaces the sub-shell that was running the cd command, not the shell that ran the script. Had you dotted the script, then you'd be correct. – Jonathan Leffler Nov 1 '08 at 4:15
Make it 'dotted' - no problem. I just proposed solution. It doesn't depend on how you launch this. – Thevs Nov 1 '08 at 4:22
1  
Hehe, I think it's better just to 'dot' one-line script with only cd command :) I'll keep my answer anyway... That will be correct stupid answer to incorrect stupid question :) – Thevs Nov 1 '08 at 5:01
feedback

LOOOOOng time after, but I did the following:

create a file called case

paste the following in the file:

#!/bin/sh

cd /home/"$1"

save it and then:

chmod +x case

I also created an alias in my .bashrc:

alias disk='cd /home/; . case'

now when I type:

case 12345

essentially I am typing:

cd /home/12345

You can type any folder after 'case':

case 12

case 15

case 17

which is like typing:

cd /home/12

cd /home/15

cd /home/17

respectively

In my case the path is much longer - these guys summed it up with the ~ info earlier.

link|improve this answer
feedback

You can combine Adam & Greg's alias and dot approaches to make something that can be more dynamic—

alias project=". project"

Now running the project alias will execute the project script in the current shell as opposed to the subshell.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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