标签:his txt second exp 批量导入 too fir first zab
sed 替换:替换一、
[root@zabbix tools]# sed -i "s/oldboy/goodboy/g" /home/tools/oldboy.txt
[root@zabbix tools]# cat oldboy.txt
goodboy
goodboy01
goodboy02
goodboy03
goodboy04
替换二、
[root@zabbix tools]# sed -i "s#goodboy#wangwang#g" /home/tools/oldboy.txt
[root@zabbix tools]# cat /home/tools/oldboy.txt
wangwang
wangwang01
wangwang02
wangwang03
wangwang04
##############################################################
sed -n 过滤日志,截取文件。
##############################################################
scp 复制,拷贝
[root@zabbix tools]# scp test 192.168.10.20@root
##############################################################
echo 导入
[root@zabbix tools]# echo ‘# haha‘ >> /home/tools/oldboy.txt
[root@zabbix tools]# cat /home/tools/oldboy.txt
wangwang
wangwang01
wangwang02
wangwang03
wangwang04
#haha
##############################################################
echo 清空配置
[root@zabbix tools]# echo > /home/tools/oldboy.txt
[root@zabbix tools]# cat /home/tools/oldboy.txt
##############################################################
密码传参
expect #
#############################################################
批量导入:
cat > test << EOF
this is first line
this is second line
this is thrird line
this is fourth line
EOF
############################################################
标签:his txt second exp 批量导入 too fir first zab
原文地址:http://blog.51cto.com/13550113/2335491