578c4fdab3
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@58 a672b425-5310-4d7a-af5c-997e18724b81
89 lines
1.7 KiB
HTML
89 lines
1.7 KiB
HTML
---
|
|
layout: page
|
|
category: Filesystem
|
|
tags: absolute and relative paths
|
|
author: Marwan Announ
|
|
title: fs
|
|
previous-page: pages/fs/rela_abso
|
|
---
|
|
|
|
|
|
|
|
<html>
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
|
|
<div class = "title1">
|
|
<h1>Relative Path!</h1>
|
|
</div>
|
|
|
|
|
|
|
|
<div class= "text1">
|
|
Relative path is defined as path related to the present working directory(pwd).
|
|
<br>Suppose I am located in /home/user1 and I want to change directory to /home/user1/Documents.
|
|
<br>I can use relative path concept to change directory to Documents.
|
|
<br> <br> <br> <p> pwd/home/user1cd Documents </p>
|
|
</div>
|
|
|
|
<br> <br> <br> Then you could tell me what is the difference between Absolute and Relative.
|
|
|
|
<br> If you observe, there is a little bit difference, where in relative there is no "/".
|
|
<br> Meanwhyle using absolute path you have to write "/", in this case cd /home/user1/Documents.
|
|
|
|
<!-- esempi con altri comandi+foto -->
|
|
|
|
|
|
|
|
|
|
|
|
<div class = "title2">
|
|
<h2>Example of Relative path's uses:</h2>
|
|
Now, as we learned from the previous pages we can use other commands in addition to "cat", such as:
|
|
|
|
<br><br>pwd
|
|
<br> cd .
|
|
<br><br>pwd
|
|
<br> cd ..
|
|
<br><br>pwd
|
|
<br> cd ..
|
|
<br><br>pwd
|
|
<br> cd
|
|
|
|
<br><br><br> and so on.. I know, it's boring but it is one of the disadvantages of not being present in the
|
|
<br>working directory
|
|
|
|
|
|
<h3> Now I will show you in many examples.</h3>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class = "img1.1">
|
|
<img src="1.1.jpg" width="auto" height="auto" alt=" pwd to know where i am " />
|
|
</div>
|
|
|
|
<div class = "img1.2">
|
|
<img src="1.2.jpg" width="auto" height="auto" alt="relative paths command" />
|
|
</div>
|
|
|
|
<div class = "img1.3">
|
|
<img src="1.3.jpg" width="auto" height="auto" alt=" funning with 'cd to return back" />
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</header>
|
|
</body>
|
|
|
|
</html>
|