2018-11-12 09:08:27 +00:00
|
|
|
---
|
|
|
|
layout: page
|
2018-11-14 13:28:12 +00:00
|
|
|
category-page: fs
|
|
|
|
category-title: FileSystem
|
2018-11-12 09:35:55 +00:00
|
|
|
tags: change directory
|
2018-11-14 21:15:38 +00:00
|
|
|
author: Alessandro Marinelli
|
2018-11-12 09:35:55 +00:00
|
|
|
title: cd
|
2018-11-12 09:08:27 +00:00
|
|
|
---
|
2018-11-14 21:15:38 +00:00
|
|
|
|
|
|
|
<!-- Co-authored with Mirko Ponzio -->
|
|
|
|
|
2018-11-12 09:08:27 +00:00
|
|
|
<p>
|
2018-11-14 21:15:38 +00:00
|
|
|
The <code>cd</code> command is used to change the working directory<br>
|
|
|
|
The name stands for <i>Change Directory</i>.<br>
|
|
|
|
|
|
|
|
The default cd command syntax is:
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
cd [flags] [path]
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
Where [flags] are the cd flags, read below for more info,and [path] is the
|
|
|
|
path (absolute or relative), of the directory which we want to make as working directory.<br><br>
|
|
|
|
|
|
|
|
<h3>Change the working directory</h3>
|
|
|
|
Let's see how to use the command <code>cd</code> in order to change the working directory
|
2018-11-12 09:08:27 +00:00
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
<pre>
|
|
|
|
pwd
|
|
|
|
~
|
|
|
|
cd Desktop/multimedia
|
|
|
|
pwd
|
|
|
|
~/Desktop/multimedia
|
|
|
|
</pre>
|
2018-11-12 09:08:27 +00:00
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
As you can see, we changed the working directory from ~ (which stands for HOME),
|
|
|
|
to "multimedia". Now our Shell will work on the directory "multimedia"
|
|
|
|
until a new <code>cd</code> will occour.<br>
|
2018-11-12 09:08:27 +00:00
|
|
|
|
2018-11-14 21:15:38 +00:00
|
|
|
<b> Notice:</b> If you want to move to a directory which is not contained in the
|
|
|
|
current working directory, you <u>MUST</u> use the absolute path.
|
|
|
|
</p>
|