1、查看本机ip地址命令:
ifconfig | grep "inet " | grep -v 127.0.0.1
2、查看开机时间:
last | grep reboot
3、查看关机时间:
last | grep shutdown
4、显示 .git
等隐藏文件的快捷键
Command + Shift + .
5、关闭指定端口
lsof -i:9000 #端口号
kill -9 42624 #对应PID
6、密码是回车,怎么改成新密码,新密码设置需要输入旧密码
$ passwd. //会提示输入当前用户的旧密码,直接按回车然后设置新密码
网友评论