我是靠谱客的博主 完美铃铛,最近开发中收集的这篇文章主要介绍linux shell脚本数据处理,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

/bin/date +%F >> /test/shelldir/ex2.info
echo "disk info:" >> /test/shelldir/ex2.info
/bin/df -h >> /test/shelldir/ex2.info
echo >> /test/shelldir/ex2.info
echo "online users:" >> /test/shelldir/ex2.info
/usr/bin/who | /bin/grep -v root >> /test/shelldir/ex2.info
echo "memory info:" >> /test/shelldir/ex2.info
/usr/bin/free -m >> /test/shelldir/ex2.info
echo >> /test/shelldir/ex2.info
#write root
/usr/bin/write root < /test/shelldir/ex2.info && /bin/rm /test/shelldir/ex2.info
#crontab -e
#0 9 * * 1-5 /bin /sh /test/ex2.sh

date +%F:将转换后的日期追加ex2.info中,如果该目录不存在则创建该目录

df -h :磁盘信息

/usr/bin/  :linux命令主要存放在/bin和/usr/bin/下。

/usr/bin/who | /bin/grep -v root:排除root用户后的所有登录这台机器的用户

/usr/bin/free -m :磁盘空间信息

/usr/bin/write root < /test/shelldir/ex2.info && /bin/rm /test/shelldir/ex2.info :将写入的文件写给root用户并且(&&)删除(/bin/rm)该文件。

转载于:https://my.oschina.net/2286252881/blog/874464

最后

以上就是完美铃铛为你收集整理的linux shell脚本数据处理的全部内容,希望文章能够帮你解决linux shell脚本数据处理所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部