gpt4 book ai didi

linux - RRD 不适用于 shell 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 10:38:01 24 4
gpt4 key购买 nike

我正在使用这段代码创建一个带有 RRD 的图表:

#!/bin/sh
rrdtool graph tempweek.png \
-s "now - 1 day" -e "now" \
DEF:temp0=temperature.rrd:temp0:AVERAGE \
LINE2:temp0#33E500:Außen \
DEF:temp1=temperature.rrd:temp1:AVERAGE \
LINE2:temp1#FF6600:Pool \
DEF:temp2=temperature.rrd:temp2:AVERAGE \
LINE2:temp2#0066CC:Dach

当我在控制台中插入命令时,一切正常,但是当我通过 shell 脚本运行它时,出现错误。

enter image description here

最佳答案

我的猜测是您使用了 Windows 编辑器来编写您的脚本...它在行之间插入 CRLF 而不是像 Unixland 中的规范那样仅插入 LF。

这个小小的 perl 单行代码 ...

perl -I~ -pe 's/\r\n/\n/g' rrd.sh

将修复您的脚本。在命令行上运行它。

为了防止以后发生这种情况,请确保设置您的编辑器写入具有 LF 行结尾的文件。

关于linux - RRD 不适用于 shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36516757/

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