好想在2014结束前再赶出个10篇博文来,~(>_ result.txt
思路也很简单,将IP列表读取来写进一个iplist文件,然后再对这个文件fping(调用fping.sh)批量执行的结果写进result文件:
def check_online_ip(): ip = my...
【python】 【服务器】 【mysql】 【数据库】 【脚本】 【IP】 【Ping】 …
MySQL InnoDB事务的隔离级别有四级,默认是“可重复读”(REPEATABLE READ)。
未提交读(READ UNCOMMITTED)。
【mysql】 【innodb】 【Transaction】 【session】 【update】 【repeatable】 【read】 点击查看原文>
shell中的while read 与 ssh 与多线程
今天在写运维工具的时候,while read line之后,
再调用ssh去远程服务器上执行命令,然后while内循环只执行了一次就退出了…
cat $hostfile | while read line do echo $line ":" ssh "$line" "w" echo "====" done |
颇为不解。只好gg.
然后发现ssh会去读stdin… 我那个while read也会读stdin..父子进程读到一起去了…
man之后,发现参数-n:
-n Redirects stdin from /dev/null (actually, prevents reading from stdin). This must be used when ssh is run in the background. A common trick is to use this to run X11 programs on a remote machine. For example, ssh -n shadows.cs.hut.fi emacs & will start an emacs on shadows.cs.hut.fi, and the X11 connection will be automatically forwarded over an … |