linux文件目录令大全,Linux之文件目录常用命令

Linux之文件目录常用命令

Linux之文件目录常用命令

1.帮助命令

(1)man 获取帮助信息

基本语法:man + 命令或者配置文件

(1)help 获取shell内置命令的帮助信息

基本语法:help + 命令

2.常用快捷键

(1) crtl+c 停止进程

(2)ctrl+l 清屏

(3)善于使用tab键,对命令进行补全

(4)上下键,查找已经执行过的命令

3.文件目录类

(1) pwd 返回当前工作目录的绝对路径

基本语法:pwd

b0231d32e05e076a0f383bcb40788a6a.png

(2) ls 列出目录的内容

基本语法:ls [选项] [目录或是文件]

选项:

-a :all,全部的文件,连同隐藏的文档( 开头为 . 的文件) 一起列出来(常用)

-l :长数据串列出,包含文件的属性与权限等等数据;(常用)

每行列出的信息依次是: 文件类型与权限 链接数 文件属主 文件属组 文件大小用byte来表示 建立或最近修改的时间 名字

等同于ll命令

0d7fa9057da620f80dbac00a3283f86f.png

(3) mkdir 创建一个新的目录

基本语法:

mkdir [-p] 要创建的目录

选项:

p:创建多层目录

d60ef901ce020a1cc195a75ccf143633.png

(4) rmdir 删除一个空的目录(了解)

基本语法:

rmdir 要删除的空目录,remove 即移除

b0b2a2c270312f0e8988ec75ad735000.png

(5) touch 创建空文件

基本语法:

touch 文件名称

案例

77f6cb153314ae9465a93922c534aab1.png

(6) cd 切换目录

基本语法:

? cd 绝对路径

cd 相对路径

? cd ~或者cd (功能描述:回到自己的家目录)

cd - (功能描述:回到上一次所在目录)

? cd … (功能描述:回到当前目录的上一级目录)

? cd . (功能描述:回到当前目录)

.即一个英文点号代表当前目录,…即两个英文点号代表上一级目录。

(7) cp 复制文件或目录

基本语法:

? cp source dest (功能描述:复制source文件到dest)

? cp -r sourceFolder targetFolder (功能描述:递归复制整个文件夹)

注意:r即recursive递归,这里是递归拷贝,将该目录以及所有子目录(包括再多的子目录)下的所有文件即文件夹都拷贝

[[email protected] bbb]# cp a.txt test/

[[email protected] bbb]# ll

total 4

-rw-r--r-- 1 root root 0 Sep 5 10:02 a.txt

drwxr-xr-x 2 root root 4096 Sep 5 10:07 test

[[email protected] bbb]# cd test/

[[email protected] test]# ll

total 0

-rw-r--r-- 1 root root 0 Sep 5 10:07 a.txt

[[email protected] bbb]# cp -r test/ test1

[[email protected] bbb]# ll

total 8

-rw-r--r-- 1 root root 0 Sep 5 10:02 a.txt

drwxr-xr-x 2 root root 4096 Sep 5 10:07 test

drwxr-xr-x 2 root root 4096 Sep 5 10:09 test1

[[email protected] bbb]# cd test1/

[[email protected] test1]# ll

total 0

-rw-r--r-- 1 root root 0 Sep 5 10:09 a.txt

(8) rm 移除文件或目录

基本语法

rmdir [目录名] (功能描述:删除空目录),缺点:只能删除空目录。

? rm -rf [目录名] (功能描述:递归删除目录中所有内容)慎用

[[email protected] bbb]# rm test1/

rm: cannot remove `test1/': Is a directory

[[email protected] bbb]# rm -rf test1

[[email protected] bbb]# ll

total 4

-rw-r--r-- 1 root root 0 Sep 5 10:02 a.txt

drwxr-xr-x 2 root root 4096 Sep 5 10:07 test

(9) mv 移动文件与目录或重命名

基本语法:

? mv +旧文件名 +新文件名 (功能描述:重命名)

? mv /temp/movefile /targetFolder (功能描述:递归移动文件)

[[email protected] bbb]# ll

total 4

-rw-r--r-- 1 root root 0 Sep 5 10:02 a.txt

drwxr-xr-x 2 root root 4096 Sep 5 10:07 test

You have new mail in /var/spool/mail/root

[[email protected] bbb]# mv a.txt b.txt

[[email protected] bbb]# ll

total 4

-rw-r--r-- 1 root root 0 Sep 5 10:02 b.txt

drwxr-xr-x 2 root root 4096 Sep 5 10:07 test

[[email protected] bbb]# mv b.txt test/

[[email protected] bbb]# cd test/

[[email protected] test]# ll

total 0

-rw-r--r-- 1 root root 0 Sep 5 10:07 a.txt

-rw-r--r-- 1 root root 0 Sep 5 10:02 b.txt

(10) cat 查看文件内容

查看文件内容,从第一行开始显示。

适合查看小文件,行数比较少的文件,通常用来查看配置文件。

基本语法

cat [选项] 要查看的文件

选项:

-A :相当于 -vET 的整合选项,可列出一些特殊字符而不是空白而已;

-b :列出行号,仅针对非空白行做行号显示,空白行不标行号!

-E :将结尾的断行字节 $ 显示出来;

-n :列出行号,连同空白行也会有行号,与 -b 的选项不同;

-T :将 [tab] 按键以 ^I 显示出来;

-v :列出一些看不出来的特殊字符

面试题:查看CentOS版本命令

[[email protected] test]# cat /etc/redhat-release

CentOS release 6.8 (Final)

(11) tac查看文件内容

查看文件内容,从最后一行开始显示,按行倒序显示,可以看出 tac 是 cat 的倒着写。

基本语法:

tac [选项参数] 要查看的文件

(12) more 查看文件内容

查看文件内容,一页一页的显示文件内容。

基本语法:

more 要查看的文件

功能使用说明

空白键 (space):代表向下翻一页;

Enter:代表向下翻『一行』;

q代表立刻离开 more ,不再显示该文件内容。

Ctrl+F (注意是大写)向下滚动一屏

Ctrl+B 返回上一屏

= 输出当前行的行号

也可以在more命令下,调用vi,进行搜索。

按下v键,调用vi编辑器

输入/,后面在跟你需要搜索的字符串(输入i,可以进行编辑)

然后按下回车,就搜到你要的字符串了,按n是匹配当前文本的下一个字符串

退出vim模式,按Esc键,输入:q 就可以退出vim,返回more命令格式

(13) less 查看文件内容

less 的作用与 more 十分相似,都可以用来浏览文字档案的内容,不同的是 less 允许使用[pageup] [pagedown]往回滚动。

基本语法:

less 要查看的文件

功能使用说明

空白键 :向下翻动一页;

[pagedown]:向下翻动一页;

[pageup] :向上翻动一页;

/字串 :向下搜寻『字串』的功能;n:向下查找;N:向上查找;

?字串 :向上搜寻『字串』的功能;n:向上查找;N:向下查找;

q :离开 less 这个程序;

(14) head查看文件内容

查看文件内容,只看头几行,优点:对于大文件不必都加载,只显示头几行即可。

基本语法

head -n 10 文件 (功能描述:查看文件头10行内容,10可以是任意行数)

(15) tail 查看文件内容

查看文件内容,只看尾巴几行,优点:可以查看文件实时追加的内容。

基本语法

tail -n 10 文件 (功能描述:查看文件头(从末尾开始数)10行内容,10可以是任意行数)

tail -f 文件 (功能描述:实时追踪该文档的所有更新)

(16) 重定向命令

基本语法:

ls -l >a.txt文件 (功能描述:列表的内容写入文件a.txt中(覆盖写))

ls -al >>a.txt文件 (功能描述:列表的内容追加到文件aa.txt的末尾)

[[email protected] test]# ls -l -a >> a.txt

[[email protected] test]# cat a.txt

total 0

-rw-r--r-- 1 root root 0 Sep 5 10:38 a.txt

-rw-r--r-- 1 root root 0 Sep 5 10:02 b.txt

total 12

drwxr-xr-x 2 root root 4096 Sep 5 10:15 .

drwxr-xr-x 3 root root 4096 Sep 5 10:15 ..

-rw-r--r-- 1 root root 96 Sep 5 10:38 a.txt

-rw-r--r-- 1 root root 0 Sep 5 10:02 b.txt

[[email protected] test]# cat b.txt

You have new mail in /var/spool/mail/root

[[email protected] test]# ls -l >a.txt

[[email protected] test]# cat a

cat: a: No such file or directory

[[email protected] test]# cat a.txt

total 0

-rw-r--r-- 1 root root 0 Sep 5 10:39 a.txt

-rw-r--r-- 1 root root 0 Sep 5 10:02 b.txt

(17) echo

基本语法:

echo 要显示的内容 >> 存储内容的的文件 (功能描述:将要显示的内容,存储到文件中)

echo 变量 (功能描述:显示变量的值)

[[email protected] test]# echo "hello word" >> b.txt

[[email protected] test]# cat b.txt

hello word

(18)ln软链接

基本语法:

ln -s [原文件] [目标文件] (功能描述:给原文件创建一个软链接,软链接存放在目标文件目录)

删除软链接(如果是文件夹的话,要注意没有最后的/): rm -rf hadoop,而不是rm -rf hadoop/

[[email protected] test]# pwd

/root/test/aaa/bbb/test

You have new mail in /var/spool/mail/root

[[email protected] test]# ll

total 12

-rw-r--r-- 1 root root 96 Sep 5 10:39 a.txt

-rw-r--r-- 1 root root 11 Sep 5 10:42 b.txt

drwxr-xr-x 2 root root 4096 Sep 5 10:44 test

[[email protected] test]# pwd

/root/test/aaa/bbb/test

[[email protected] test]# ln -s /root/test/aaa/bbb/test/a.txt /root/test/aaa/bbb/test/

ln: creating symbolic link `/root/test/aaa/bbb/test/a.txt': File exists

[[email protected] test]# ln -s /root/test/aaa/bbb/test/a.txt /root/test/aaa/bbb/test/test/

[[email protected] test]# ll

total 12

-rw-r--r-- 1 root root 96 Sep 5 10:39 a.txt

-rw-r--r-- 1 root root 11 Sep 5 10:42 b.txt

drwxr-xr-x 2 root root 4096 Sep 5 10:45 test

[[email protected] test]# cd test/

[[email protected] test]# ll

total 0

lrwxrwxrwx 1 root root 29 Sep 5 10:45 a.txt -> /root/test/aaa/bbb/test/a.txt

You have new mail in /var/spool/mail/root

[[email protected] test]# rm -rf a.txt

You have new mail in /var/spool/mail/root

[[email protected] test]# ll

total 0

(19) history查看所敲命令历史

基本语法:

history

Linux之文件目录常用命令相关教程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值