1

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

#!/bin/bash

echo "Suppression de $1" >> /share/MD0_DATA/remotesync/delete.log
log=$(/share/MD0_DATA/remotesync/remoteSync -rm "$1")
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 上工作?但我不这么认为。

4

2 回答 2

0

也许remoteSync也在写标准错误。

试试这个:

#!/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

如果该log变量仅用于将输出附加到日志文件,请尝试以下操作:

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

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

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

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

于 2016-05-31T12:52:58.597 回答
0

我使用了第一个选项 #!/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 也在写入标准错误。

感谢您的快速回答。

于 2016-05-31T13:33:08.630 回答