发布时间:2013-06-08 22:25:00
#!/usr/bin/expect-fset password 123456#downloadspawn scp root@192.168.1.218:/root/a.wmv /home/hbhe/set timeout 300 expect "root@192.168.1.218'spassword:"set timeout 300 send "$password\r"set timeout 300 send "exit\r"expect eof #uploadspawn scp /home/hbhe/abc.sqlroot@.........【阅读全文】
发布时间:2013-06-08 22:19:31
一. Crontab 介绍 crontab命令的功能是在一定的时间间隔调度一些命令的执行。 1.1 /etc/crontab 文件 在/etc目录下有一个crontab文件,这里存放有系统运行的一些调度程序。每个.........【阅读全文】
发布时间:2013-06-08 22:09:03
sed -i 's/abc/xxx/g' fileabc修改前的字符串xxx是修改后的字符串file是要被修改的文件[root@db2 home]# cat test.sh #!/bin/sh8080334455[root@db2 home]# sed -i 's/80/test/g' test.sh [root@db2 home]# cat test.sh #!/bin/shtesttest334455[root@db2 home]# 这样就把80.........【阅读全文】
发布时间:2013-06-08 21:58:14
很多时候,我们的脚本中涉及的用户名/密码/ip等敏感信息,我们需要使用一些加密方面来屏蔽这些信息,确保我们的系统安全(主要防菜鸟),虽然shc可以实现强大的加密功能,但是他需要另外安装shc软件,比较麻烦,应对一般的加密,个人推荐直接喜用系统自带的gze.........【阅读全文】
发布时间:2013-06-08 21:47:21
第一种: [root@css /]# cat /etc/redhat-release Red Hat Enterprise Linux AS release 4 (NahantUpdate 2) 第二种: [root@css /]# cat /etc/issue Red Hat Enterprise Linux AS release 4 (Nahant Update2) Kernel \r on an \m 查看核心版本: [root@css /]# cat .........【阅读全文】