linux
风里来云里去
这个作者很懒,什么都没留下…
展开
-
linux常用命令
1 在当前目录和子目录下查找文件名find path -name filefind . -name filename原创 2014-01-28 19:01:45 · 447 阅读 · 0 评论 -
shell循环sleep while例子 条件判断
i=1# 小于5等于时候才执行while [ ${i} -le 5 ]do echo ${i} i=`expr ${i} + 1` # 休眠3秒 sleep 3doneecho done参考http://c.biancheng.net/cpp/view/2736.html原创 2016-12-13 21:17:16 · 10708 阅读 · 0 评论 -
SUSE定时任务的设置
//编辑定时任务crontab –e/etc/init.d/cron start //启动服务/etc/init.d/cron stop //关闭服务/etc/init.d/cron restart //重启服务/etc/init.d/cron reload //重新载入配置/etc/init.d/cron status //查看服务状态原创 2015-07-25 17:21:07 · 5315 阅读 · 0 评论 -
Linux常用维护命令
http://blog.csdn.net/cyberhero/article/details/4389864转载 2015-04-20 10:15:01 · 366 阅读 · 0 评论 -
suse修改主机名
1 修改/etc/HOSTNAME为需要的主机名2 在/etc/sysconfig/network中添加主机名映射原创 2015-01-19 11:13:34 · 862 阅读 · 0 评论 -
linux管理命令 查看性能参数
1 查看内存 free2 查看核心数 cat /proc/cpuinfo |grep "processor"|wc -l原创 2015-01-29 14:05:59 · 347 阅读 · 0 评论 -
Linux配置时钟同步
时钟源:1 在时钟源开启时钟同步service ntp start2 开启启动时钟同步功能vi /etc/rc.d/after.local加入这些 service ntp start其他服务器添加定时任务crontab -e加入这行命令0,15,30,45 * * * * sntp -P no -r IP_address原创 2015-01-29 15:45:10 · 614 阅读 · 0 评论 -
awk常见问题汇总
1 print是非格式化的 printf是带格式化的类似C语言原创 2014-09-11 09:57:51 · 578 阅读 · 0 评论 -
linux shell常用命令
1 eval 执行后面的语句类似于``2 sed 变量替换原创 2014-05-30 16:49:44 · 562 阅读 · 0 评论 -
shell脚本测试 $0 $1 $2 输出文件名 参数1 参数2的值
代码如上原创 2014-05-30 18:32:44 · 1130 阅读 · 0 评论 -
远程执行命令的脚本片段
/usr/bin/expect xxxEOD原创 2014-03-13 14:46:01 · 541 阅读 · 0 评论 -
linux常用操作
1 查看操作系统版本号lsb_release -a原创 2018-06-12 14:52:00 · 156 阅读 · 0 评论