bash 变量中脚本的库存输出 (QNAP QTS 4.0)

Stock output of a script in a bash variable (QNAP QTS 4.0)

我正在尝试将脚本的输出存储在一个变量中。 这是我的脚本代码 (delete.sh) :

#!/bin/bash

echo "Suppression de " >> /share/MD0_DATA/remotesync/delete.log
log=$(/share/MD0_DATA/remotesync/remoteSync -rm "")
echo $log >> /share/MD0_DATA/remotesync/delete.log̀

当我执行这个脚本时,我在输出中得到了:

[/share/MD0_DATA/.qpkg/remotesync] # soft/delete.sh "archivesPAO/3MONTAGE BORNE OZ 275x155.psd"
drivers : ("QMYSQL3", "QMYSQL", "QSQLITE")
Table hubicobject & hubicobjectLocal sucessfully reseted
Load container Object
" ATTENTION recuperation du prefix : archivesPAO/3MONTAGE BORNE OZ 275x155.psd"
Credentials
Refresh Token
"Upload  : 100% 0.00 octets/s fin dans : 00:00:00"
"Download  : 100% 0.00 octets/s fin dans : 00:00:00"
"Download  : 100% 0.00 octets/s fin dans : 00:00:00"
"https://lb9911.hubic.ovh.net/v1/AUTH_f5cb82ec59a615a1c56053608e0c6123"
"Download  : 100% 0.00 octets/s fin dans : 00:00:00"
"Download  : 100% 0.00 octets/s fin dans : 00:00:00"
"Temps pour inserrer 10000 entree : 0 ms"
[/share/MD0_DATA/.qpkg/remotesync] # cat soft/delete.log 

Suppression de archivesPAO/3MONTAGE BORNE OZ 275x155.psd

所以我不明白为什么我不能将此输出存储在我的 shell 变量中。 也许是因为我在 QNAP QTS 4.0 上工作?但我不这么认为。

也许 remoteSync 也在写入标准错误。

试试这个:

#!/bin/bash
printf "Suppression de %s\n" "" >> /share/MD0_DATA/remotesync/delete.log
log="$(/share/MD0_DATA/remotesync/remoteSync -rm "" 2>&1)"
printf "%s\n" "${log}" >> /share/MD0_DATA/remotesync/delete.log

如果 log 变量仅用于将输出附加到日志文件,试试这个:

#!/bin/bash
printf "Suppression de %s\n" "" >> /share/MD0_DATA/remotesync/delete.log
/share/MD0_DATA/remotesync/remoteSync -rm "" >> /share/MD0_DATA/remotesync/delete.log 2>&1

标准输出和标准错误都附加到 delete.log 文件,感谢 >> ... 2>&1

>> ... 将命令的标准输出附加到文件。

2>&1 指示 shell 将标准错误(文件描述符 2)重定向到标准输出(文件描述符 1)。还附加了标准错误。

我用过第一个选项 #!/bin/bash printf "Suppression de %s\n" "${1}" >> /share/MD0_DATA/remotesync/delete.log log="$(/share/MD0_DATA/remotesync/remoteSync -rm "${1}" 2>&1)" printf "%s\n" "${log}" >> /share/MD0_DATA/remotesync/delete.log

它也很管用。所以 remoteSync 也在写入标准错误。

感谢您的快速回答。