gpt4 book ai didi

linux - bash 脚本中的 sed 输出在 CLI 中有效,在 cron 中输出不同

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:03:23 24 4
gpt4 key购买 nike

一个用于在我的 Webinoly Ubuntu 18 服务器上列出站点的简单脚本在 CLI 中运行但在 cron 中失败。 Webinoly 是一个站点管理脚本,并有一个命令来列出它正在管理的站点:

site -list

此命令在 CLI 中的输出如下所示:

 - catalyst.dk39ecbk3.com
- siteexample3.com
- webinoly.dk39ecbk3.com

我遇到问题的脚本(下面)应该删除控制字符、每行开头的“-”以及使用 sed 的空行:

#!/bin/bash

# create array of sites using webinoly 'site' command
# webinoly site -list command returns lines that start with hyphens and spaces, along with control chars, which need to be removed
# SED s/[\x01-\x1F\x7F]//g removes control characters
# SED s/.{7}// removes first seven chars and s/.{5}$// removes last 5 chars
# SED /^\s*$/d removes blank lines
# removing characters http://www.theunixschool.com/2014/08/sed-examples-remove-delete-chars-from-line-file.html
# removing empty lines https://stackoverflow.com/questions/16414410/delete-empty-lines-using-sed

SITELIST=($(/usr/bin/site -list | sed -r "s/[\x01-\x1F\x7F]//g;s/.{7}//;s/.{5}$//;/^\s*$/d"))

#print site list

for SITE in ${SITELIST[@]}; do
echo "$SITE"
done

这是我在 CLI 中看到的所需输出:

root@server1 ~/scripts # ./gdrive-backup-test.sh
catalyst.dk39ecbk3.com
siteexample3.com
webinoly.dk39ecbk3.com

当脚本在 cron 中运行时,就会出现问题。这是 cron 文件:

root@server1 ~/scripts # crontab -l
SHELL=/bin/bash
MAILTO=myemail@gmail.com
15 3 * * 7 certbot renew --post-hook "service nginx restart"
47 01 * * * /root/scripts/gdrive-backup-test.sh > /root/scripts/output-gdrive-backup.txt

这是 cron 命令生成的 output-gdrive-backup.txt 文件:

root@server1 ~/scripts # cat output-gdrive-backup.txt
lyst.dk39ecbk3
example3
noly.dk39ecbk3

每行的前三个字符缺失,后四个字符(.com)也是如此。

我已经研究并确保在 cron 文件和脚本开头强制使用 bash。

最佳答案

使用以下输入:

$ cat site 
- catalyst.dk39ecbk3.com

- siteexample3.com

- webinoly.dk39ecbk3.com

- webinoly.dk39ecbk3.com

您可以使用以下 sed 命令来获得您的输出:

$ cat site | sed -e "s/^\s*-\s*//g;/^\s*$/d"
catalyst.dk39ecbk3.com
siteexample3.com
webinoly.dk39ecbk3.com
webinoly.dk39ecbk3.com

cat 站点 替换为您要从中过滤输出的命令。

关于linux - bash 脚本中的 sed 输出在 CLI 中有效,在 cron 中输出不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53734623/

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