linux 查看某个文件属于哪个包
linux 查看某个文件属于哪个包 redhat 系列 $ yum provides /etc/passwd 或者 $ rpm -qf /etc/passwd debian 系列 sudo dp
...Read more...
数人世相逢,百年欢笑.
linux 查看某个文件属于哪个包 redhat 系列 $ yum provides /etc/passwd 或者 $ rpm -qf /etc/passwd debian 系列 sudo dp
...Read more...
curl 将域名执行特定IP访问 curl -I https://liuhonghe.me --resolve 'liuhonghe.me:443:192.168.7.77' curl -I h
...Read more...
ssh 跨越跳板机操作 命令行操作 scp -o ProxyCommand='ssh -q liuhonghe@10.13.0.36 -W %h:%p' 传输的文件 liuhonghe@10.1
...Read more...
使用 curl 在命令行获取网站的响应时间 curl -L -w "time_namelookup: %{time_namelookup}\ntime_connect: %{time_
...Read more...
umount 查找占用程序 fuser -m -v /data //v 表示 verbose 模式。进程以 ps 的方式显示,包括 PID、USER、COMMAND、ACCESS 字段 //-m
...Read more...
linux read 输入中读取 n 个字符并存入变量 read -n 2 var echo $var 用无回显的方式读取密码 read -s var 使用 read 显示提示信息 read -
...Read more...