code:
[root@localhost root]# pwd /root [root@localhost root]#
code:
[root@localhost root]# cd /home/neo [root@localhost neo]# ls -la total 2 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ [root@localhost neo]#
code:
[root@localhost neo]# mkdir Test [root@localhost neo]#
code:
[root@localhost neo]# ls -la total 3 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ drwxr-x--- 19 root root 4096 Feb 20 20:30 prova/ [root@localhost neo]# ls -la prova total 2 drwxr-x--- 30 root root 4096 Feb 20 20:30 ./ drwxr-x--- 19 root root 4096 Feb 20 20:30 ../ [root@localhost neo]#
code:
[root@localhost root]# pwd /root [root@localhost root]#
code:
[root@localhost root]# cd /home/neo/ [root@localhost neo]#
code:
[root@localhost neo]# ls -la total 3 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ drwxr-x--- 19 root root 4096 Feb 19 22:00 Directory_1/ drwxr-x--- 19 root root 4096 Feb 19 22:00 Test/ [root@localhost neo]#
code:
[root@localhost root]# mv Test Directory_1 'Test' -> '/Directory_1/Test' [root@localhost root]#
code:
[root@localhost neo]# ls -la total 2 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ drwxr-x--- 19 root root 4096 Feb 19 22:00 Directory_1/ [root@localhost root]#
code:
[root@localhost neo]# cd /home/neo/Directory_1 [root@localhost Test]# ls -la total 3 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ -rw-r--r-- 1 root root 24 Jan 22 21:58 Test_1
code:
[root@localhost root]# pwd /root [root@localhost root]#
code:
[root@localhost root]# cd /home/neo [root@localhost neo]# ls -la total 3 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ drwxr-x--- 19 root root 4096 Feb 20 20:30 prova/ [root@localhost neo]#
code:
[root@localhost neo]# rmdir Test [root@localhost neo]#
code:
[root@localhost neo]# ls -la total 2 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ [root@localhost neo]#
code:
[root@localhost neo]# rmdir prova rmdir: 'prova': Directory not empty [root@localhost neo]# rm -r prova [root@localhost neo]# Controllo se è stata rimossa la cartella 'Test' da /home/neo: [code][root@localhost neo]# ls -la total 2 drwxr-x--- 30 root root 4096 Feb 19 22:00 ./ drwxr-x--- 19 root root 4096 Feb 19 22:00 ../ [root@localhost neo]#