==== 获取本机 ip ==== hostname -I ==== 磁盘空间 ==== [[https://www.runoob.com/w3cnote/linux-view-disk-space.html|Linux 查看磁盘空间]] # 查看系统磁盘空间 df -h # 查看当前目录各个文件的大小 du -h du -h --max-depth=1 # 查看当前目录的总大小 du -sh ==== 软链接 ==== [[https://blog.csdn.net/m290345792/article/details/78518360|linux软链接的创建、删除和更新]] # 创建软链接 ln –s [源文件路径] [目标路径] # 查找目录下所有的软链接 ls -alR | grep ^l ==== 在指定类型文件中查找字符串 ==== find -type f -name '*.h' | xargs grep "hello" ==== 删除 /tmp/ 目录下当前用户的所有文件 ==== ls -dl /tmp/*|grep $USER|awk '{print $9}'|xargs rm -rf ==== 将目录下某一天创建的文件移动到指定目录下 ==== ls -tl|grep '12月 14'|grep 'flink'|awk '{print $9}'|xargs -I {} mv {} test ==== Ubuntu 升级到 Python3.7 ==== [[https://blog.csdn.net/danerer/article/details/85343909|ubuntu16.04升级Python3.5到Python3.7]] [[https://blog.csdn.net/San_South/article/details/80715682|Ubuntu16.04上pip报错ModuleNotFoundError: No module named 'pip._internal']]