随笔分类 - linux相关
摘要:``` 1)前往用户根目录 >: cd ~ 2)下载 或 上传 Python3.6.7 # 服务器终端 >: wget https://www.python.org/ftp/python/3.6.7/Python-3.6.7.tar.xz # 本地终端,给服务器上传 >: scp -r 本地Pyth
阅读全文
摘要:1. 查找目录或文件 ``` # 只查找目录 find 想要查找的目录 -name '查找的目录名' -type d # 查找当前目录lei开头的目录名 find . -name "lei*" -type d # 只查找文件 find 想要查找的目录 -name "查找的文件名" -type f #
阅读全文