Linux基本命令學習之一:Linux基本命令
一 、Linux基本命令 cd Tab pwd mkdir rmdir
Change Directory -- cd
cd ~ 表示回到自己的主資料夾 cd .. 表示去上一層目錄 cd - 表示回到剛才那個目錄
[root@HadoopMaster src]# cd
[root@HadoopMaster ~]# cd /usr
[root@HadoopMaster usr]# cd ~
[root@HadoopMaster ~]# cd ..
[root@HadoopMaster ~]# cd /usr/local/redis-2.8.13
[root@HadoopMaster redis-2.8.13]# cd ..
[root@HadoopMaster local]# cd /usr/local/redis-2.8.13
[root@HadoopMaster redis-2.8.13]#
Tab 快速 完整的補全目錄或者程式碼
pwd 顯示目前所在的目錄
[root@HadoopMaster redis-2.8.13]# pwd
/usr/local/redis-2.8.13
===============================================================
mkdir 建立資料夾
mkdir [-mp] 目錄名稱
-m設定預設的許可權
-p 可以自行建立多層目錄
[root@HadoopMaster Desktop]# mkdir test
[root@HadoopMaster Desktop]# ll
drwxr-xr-x. 2 root root 4096 Aug 14 10:11 test
[root@HadoopMaster Desktop]# mkdir -p test/test2/test3
[root@HadoopMaster Desktop]# mkdir -p test/test2/test4
test2下面有兩個資料夾:test3 test4
刪除資料夾:rmdir
rmdir [-p] 目錄檔案
-p 連同上層空的目錄頁也一起刪除
[root@HadoopMaster Desktop]# mkdir test1
[root@HadoopMaster Desktop]# rmdir test1
只能刪除空的:! 而且連同上層空的一起刪除
[root@HadoopMaster Desktop]# rmdir -p test/test2/test4
rmdir: failed to remove directory `test/test2': Directory not empty
[root@HadoopMaster Desktop]# rmdir -p test/test2/test3
最近申請了微信公眾號,希望大家來看看,專門為程式設計師而生,做最好的程式設計
相關文章
- Linux基本命令學習之二:Linux基本命令Linux
- 學習Linux基本命令(一)Linux
- Linux基本命令學習之六:tarLinux
- Linux 基本操作命令Linux
- linux基本命令Linux
- Linux基本操作命令Linux
- Linux基本命令學習之四:文字檢視Linux
- Linux基本命令學習之五:bash 變數Linux變數
- linux基本命令大全Linux
- Linux基本命令一Linux
- linux常用基本命令Linux
- Linux vmstat命令基本使用Linux
- 『學了就忘』Linux基礎命令 — 18、Linux命令的基本格式Linux
- Linux基本命令學習之三:cat tac nl moreLinux
- 【Linux】Linux基本常用命令Linux
- Linux 常用基本命令 lnLinux
- linux 常用基本命令 cdLinux
- Linux 常用基本命令 -lsLinux
- Linux常用基本命令(more)Linux
- Linux常用基本命令[cp]Linux
- Linux 常用基本命令 findLinux
- Linux基本命令備忘Linux
- Linux iostat命令基本使用LinuxiOS
- linux useradd命令的基本用法Linux
- Linux彙總基本命令【1】Linux
- linux基本命令介紹(二)Linux
- linux基本命令介紹(一)Linux
- Linux 基本命令 -------- tail 的使用LinuxAI
- Linux的常用基本命令(二)Linux
- Linux read命令的基本使用!Linux
- Linux 常用基本命令 rmdir rmLinux
- Linux 常用基本命令 pwd mkdirLinux
- Linux 常用基本命令 重定向Linux
- Linux常用基本命令( ls, alias)Linux
- Linux基本bash命令(持續更新)Linux
- Linux常用的基本命令11Linux
- LInux50個基本命令Linux
- linux磁碟分割槽基本命令Linux