gpt4 book ai didi

linux - Bash 脚本报告组成员

转载 作者:太空宇宙 更新时间:2023-11-04 12:43:16 26 4
gpt4 key购买 nike

我需要能够使用 bash 创建一个脚本来报告特定组的成员(用户在这个组中),将输出写入一个文件并使用 crontab 来安排脚本

我已经完成了 Crontab 部分,但不确定它是否也正确:

 - 5:55am: 55 5 * * 1-5 /bin/sh /home/test/membersofgroup.sh 
- 9:55am: 55 9 * * 1-5 /bin/sh /home/test/membersofgroup.sh
- 3:55pm: 55 15 * * 1-5 /bin/sh /home/test/membersofgroup.sh

问候。

最佳答案

将@Barmar 的crontab 条目与我的awk 相结合:

$ cat >> crontab_file_of_yours.txt
55 5,9,15 * * 1-5 awk -F\: '/^specific:/ && $0=$4' /etc/group >> /pathto/file.txt
$ crontab crontab_file_of_yours.txt

关于linux - Bash 脚本报告组成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39555369/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com