摘要:
linux下压缩包有哪些常见类型 文件压缩与打包 gzip bzip2 文件打包与压缩zip tar find / -type f -mtime -1 | grep -Ev "/pro|sys|var" | xargs tar czf ~/sys.tar.gz 3,查找压缩文件 tar tf tes 阅读全文
摘要:
语法 find path -option [ -print ] [ -exec -ok command ] {} \; 参数说明 : find 根据下列规则判断 path 和 expression,在命令列上第一个 - ( ) , ! 之前的部份为 path,之后的是 expression。如果 p 阅读全文
摘要:
重定向 1,什么是重定向 2,为什么要重定向 3,学习重定向的预备知识,标准输入与输出 [root@serv-test test123]# ll /dev/std* lrwxrwxrwx 1 root root 15 6月 1 2021 /dev/stderr -> /proc/self/fd/2 阅读全文