(三)Shell脚本简单示例

写一个定时任务每周五17:30,把日期和当前目录文件写入clean.log文件中。

 vi ftpclean.sh

#!/bin/bash
date >>clean.log
ls>>clean.log

  crontab -e

30 17 * * 5 /root/shellTest/ftpclean.sh

写一个脚本文件,查询磁盘空间、内存空间、查询普通用户列表。

#!/bin/bash
#test1.sh
echo 'disk space'
echo
df -Th
echo 'free space'
free -m
echo
echo 'users'
for i in `ls /home`
do
        echo $i
        id -u $i
done

 

你可能感兴趣的:(shell编程,shell,linux)