我有一个我目前正在运行的脚本,它适用于除一个以外的所有实例:
#!/bin/sh
pdfopt test.pdf test.opt.pdf &>/dev/null
pdf2swf test.opt.pdf test.swf
[ "$?" -ne 0 ] && exit 2
在上面的代码之后执行更多的行......
pdf2swf test.pdf test.swf
如果“ pdf2swf test.opt.pdf test.swf
”失败,我将如何更改此脚本以运行“ ”?如果第二次尝试失败,那么我会“ exit 2
”。
谢谢