- windows和linux文件传输
rz 本地机器的文件传输到远程linux
-b binary 用binary的方式上传下载,不解释字符为ascii
-e 强制escape 所有控制字符,比如Ctrl+x,DEL等
rz -be 解决文件乱码
sz filename: 远程机器传输文件到本地机器
升级内核
https://blog.csdn.net/jeffleo/article/details/70904150
http://elrepo.org/tiki/tiki-index.php
免密登录远程linux主机:
#!/usr/bin/expect
set timeout 30
spawn ssh -l zhangsn 192.168.17.46
expect "password:"
send "123456\r"
interact
强制杀死tomcat进程
ps -ef|grep crawler-wld|grep -v grep| cut -c 9-15|xargs kill -9;
网友评论