标签:ash 变量 less col 解压 zip unzip tac 并且
操作文本
gedit hello.txt # 创建一个hello.txt文件
cat hello.txt # 看hello.txt 里的内容(tac倒看)
vi hello.txt # 编辑hello.txt 的内容
nl hello.txt # 显示看hello.txt里的内容并且显示行号
more hello.txt # 一页页显示内容 (less相识, 但是可以往前翻页)
修改时间
touch -t ‘2 years old’ bashrc # 修改文档时间
找文件
locate [ir] filename # 找指定文件 ir 忽略大小写
find / -mtime 3 # 查找三天前24有改动的文件
压缩 、解压文件
gzip -v hello.txt # 压缩hello文件 后缀为gz文件
gzip -d hello.txt # 解压hello文件 并删除压缩包
bzip2 -z hello.txt # 压缩成后缀为bz2文件
tar -xvf file.tar //解压 tar包
tar -xzvf file.tar.gz //解压tar.gz
tar -xvf -f hello.tar.bz2 -C 解压到的目录 # 解压
tar -jcv -f hello.tar.bz2 要压缩的目录 # 压缩
unrar e file.rar //解压rar
unzip file.zip //解压zip
whereis python # 查看python所在的目录
echo $PATH # 查看环境变量
vi ~/.bashrc # 增加环境变量
export PATH=/usr/bin/python/:usr/bin/python3:$PATH # 在文件后面增加所要增加的环境
标签:ash 变量 less col 解压 zip unzip tac 并且
原文地址:https://www.cnblogs.com/taozhengquan/p/10122813.html