首页 > 代码库 > linux常用shell命令

linux常用shell命令

 

1、mkdir newdir: 新建目录

2、touch filename: 新建文件

3、vi/vim filename: 编辑文件

4、grep [-acivn] [-A] [-B] [--color=auto] ‘搜寻字符串||正则表达式‘ filename : 从文件中找到匹配的行,并显示

-a binary文件以text方式搜寻

-c 统计次数

-i 忽略大小写

-v 是翻转显示

-n 输出行号

-A after 显示匹配行的后几行

-B before 显示匹配行的前几行

5 、wc [-lwm] : 统计行数、单词数、字符数

-l 行数

-w 单词数

-m 字符数

6、alias shortname=‘command‘ :命令的别名。如“alias ll=‘ls -l‘。

  如“ls | wc –w”:查看当前目录有多少个文件及文件夹

7、du –hs filename:查看文件大小

8、lsof –i :port:查看监听port端口的进程

9、tcpdump -s 0 -i any port 10012(监听端口) -w luo.cap(包的名字):抓包

-s 0 长度,0表示最长65535

-i 监听端口

-w 直接将包写入文件中,并不分析和打印出来

10、man 命令:查看命令的详细信息

11、cat

Linux Cat命令主要有三大功能:
1.Linux Cat命令一次显示整个文件。$ cat  filename
2.Linux Cat命令从键盘创建一个文件。$ cat > filename(只能创建新文件,不能编辑已有文件.)
3.Linux Cat命令将几个文件合并为一个文件。$cat  file1   file2 > file
参数:
-n 或 --number 由 1 开始对所有输出的行数编号
-b 或 --number-nonblank 和 -n 相似,只不过对于空白行不编号
-s 或 --squeeze-blank 当遇到有连续两行以上的空白行,就代换为一行的空白行
-v 或 --show-nonprinting
范例:
cat -n textfile1 > textfile2 把 textfile1的档案内容加上行号后输入 textfile2 这个档案里
cat -b textfile1 textfile2 >> textfile3 把 textfile1 和textfile2 的档案内容加上行号(空白行不加)之后将内容附加到textfile3 里。
范例:
cat -n textfile1 > textfile2 把 textfile1 的档案内容加上行号后输入 textfile2 这个档案里
cat -b textfile1 textfile2 >> textfile3 把 textfile1 和 textfile2的档案内容加上行号(空白行不加)之后将内容附加到 textfile3里。
cat /dev/null > /etc/test.txt 此为清空/etc/test.txt档案内容
cat 也可以用来制作 image file。

cat /dev/fd0 > OUTFILE 例如要制作软碟的 image file,将软碟放好后打

cat IMG_FILE > /dev/fd0 相反的,如果想把 image file 写到软碟,请打
注:
1. OUTFILE 指输出的 image 档名。
2. IMG_FILE 指 image file。
3. 若从 image file 写回 device 时,device 容量需与相当。
4. 通常用在制作开机磁片。

 

 

linux常用shell命令