Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I cd into a directory using perl?

I am trying the following.. system "cd directoryfolder" but it fails, also I try system "exit" to leave the terminal but it fails.

like image 359
sirplzmywebsitelol Avatar asked Aug 10 '11 10:08

sirplzmywebsitelol


People also ask

How do I cd to a directory?

The cd command allows you to move between directories. The cd command takes an argument, usually the name of the folder you want to move to, so the full command is cd your-directory . Now that we moved to your Desktop, you can type ls again, then cd into it. We have just changed into a new directory.


2 Answers

Code:

chdir('path/to/dir') or die "$!";

Perldoc:

   chdir EXPR
   chdir FILEHANDLE
   chdir DIRHANDLE
   chdir   Changes the working directory to EXPR, if possible. If EXPR is omitted,
           changes to the directory specified by $ENV{HOME}, if set; if not, changes to
           the directory specified by $ENV{LOGDIR}. (Under VMS, the variable
           $ENV{SYS$LOGIN} is also checked, and used if it is set.) If neither is set,
           "chdir" does nothing. It returns true upon success, false otherwise. See the
           example under "die".

           On systems that support fchdir, you might pass a file handle or directory
           handle as argument.  On systems that don't support fchdir, passing handles
           produces a fatal error at run time.
like image 99
bobah Avatar answered Oct 27 '22 20:10

bobah


The reason you can't do those things by calling system is that system will start a new process, execute your command, and return the exit status. So when you call system "cd foo" you will start a shell process, which will switch to the "foo" directory and then exit. Nothing of any consequence will happen in your perl script. Likewise, system "exit" will start a new process and immediately exit it again.

What you want for the cd case, is - as bobah points out - the function chdir. For exiting your program, there is a function exit.

However - neither of those will affect the state of the terminal session you are in. After your perl script finishes, the working directory of your terminal will be the same as before you started, and you will not be able to exit the terminal session by calling exit in your perl script.

This is because your perl script is again a separate process from your terminal shell, and things that happen in separate processes generally do not interfere with each other. This is a feature, not a bug.

If you want things to change in your shell environment, you must issue instructions that are understood and interpreted by your shell. cd is such a builtin command in your shell, as is exit.

like image 28
Peder Klingenberg Avatar answered Oct 27 '22 21:10

Peder Klingenberg