cmd:linux运维
获取本机 ip
hostname -I
磁盘空间
# 查看系统磁盘空间 df -h # 查看当前目录各个文件的大小 du -h du -h --max-depth=1 # 查看当前目录的总大小 du -sh
软链接
# 创建软链接 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
cmd/linux运维.txt · 最后更改: 2021/03/03 16:05 由 plough