摘要:
linux shell是强大的脚本程序,语法简单,下面是一个可执行的sh脚本,涵盖了常用的shell语法和用法,理解它,就等于入门了。#!/bin/bash# title :# date : ?2012/10/18# author: Made by hfxecho '[test @test test]# sh [-nvx] scripts-n :不要执行 scripts ,查询 scripts 内的语法,若有错误则予以列出!-v :在执行 scripts 之前,先将 scripts 的内容显示在屏幕上;-x :将有使用到的 scripts 内容显示在屏幕上,与 -v 稍微不同 ' 阅读全文
摘要:
【定时启动你的linux程序】*********************************************************最小模型例子:你的程序:vi hello.sh 1 #! /bin/sh 2 3 echo "hello world" 4你的任务:crontab -e 00 15 18 10 * mail hfx < /home/hfx/shell/hello.shok!你的sh脚本将在今年的10月18日15:30分执行查看你的任务:crontab -l删除你的任务:crontab -r // 注意所有都删除了还是进入你的crontab - 阅读全文