1、文件操作基本命令
#创造一个文件
touch test1.txt
#复制文件 test1.txt 到 test2.txt
cp test.1 test.2
#删除文件夹 test.2
rm test.2
#将 test1.txt 重命名为 test2.txt
mv test1.txt test2.txt
#查看文件大小
du test1.txt
#查看文件属性
file 001.txt
#统计文件字节数
wc -c test1.txt
#统计行数
wc -l test1.txt
#统计字符数
wc -m test1.txt
#统计字数
wc -w test1.txt
#统计最长行的长度
wc -L test1.txt
#查看文件内容
less and more(less 功能比较多,推荐使用 less,打开一个新窗口,q 退出)
less -S 较好输出文件格式
less -N 添加行号
#在当前 linux 界面查看内容 (不会打开一个新窗口)
cat命令
#截取头部 n 行,默认为10行
head -n
#截取尾部 n 行
tail -n
#管道符命令截取中间20行
head -40 test.txt | tail -20
#对文件进行压缩
gzip test.txt
#对文件进行解压缩
gunzip test.gz
#将文件打包
tar -zcvf a b c
#创建目录
mkdir test
#复制目录 a 到 b
cp -r a b
#删除目录 a
rm -r a
#将目录 a 进行移动和重命名
rm a/ b
网友评论