Ubuntu Pastebin

Paste from FishK at Wed, 15 Jun 2016 17:19:05 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
root@muffin:~# mkdir test1
root@muffin:~# cd test1
root@muffin:~/test1# mkdir test2
root@muffin:~/test1# cd test2
root@muffin:~/test1/test2# rm -rf ../../test1
root@muffin:~/test1/test2# cd ..
cd: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
root@muffin:~/test1/test2/..# pwd
/root/test1/test2/..
root@muffin:~/test1/test2/..# cd ..
root@muffin:~# pwd
/root
root@muffin:~#
Download as text