0

我有一个运行工具的 shell 脚本。

我想要的是,这个shell脚本的退出代码应该写在一个.XML文件中。

到目前为止我做了什么

# command1
# command2    
echo "<status>" > /home/buser/ABC/status.xml   // Writing into XML    
cp2foss -f ABC -q all /srv/foss/$archive_file2 --user foss --password foss; 
echo $? >>  /home/buser/ABC/status.xml   /// Wrting exit code into XML
echo "</status>" >> /home/buser/ABC/status.xml

它工作得很好,但我认为它不是一个好的 cosing 实践。

如何在 XML 文件中编写退出代码而不会出现这种违规?

4

3 回答 3

3

怎么样

# command1
# command2    
cp2foss -f ABC -q......
echo "<status>$?</status>" > path/to/status.xml
于 2013-02-15T13:04:56.323 回答
1

上面的代码没有违规,但你可以这样写:

cp2foss -f ABC -q all /srv/foss/$archive_file2 --user foss --password foss
printf '<status>%d</status>\n' "$?" > /home/buser/ABC/status.xml
于 2013-02-15T13:02:35.213 回答
0

你可能更喜欢这样写,因为它更干净,更容易理解。

{ 
    echo "<status>" 
    cp2foss -f ABC -q all /srv/foss/$archive_file2 --user foss --password foss;
    echo $? 
    echo "</status>" 
} > /home/buser/ABC/status.xml   # Writing into XML
于 2013-02-15T13:46:53.453 回答