将下面Shell 程序段中的空缺部分补齐,使得它可以将指定的一个或多个输入文件的内容依次添加到输出文件的末尾。如果指定的输出文件不存在,则程序应自动产生一个输出文件。
if ["$#"-It 2];then
echo "Usage $0<output-file><input file l>[<input file2>...]"
exit 0
fi
utput="$1"
shift
for i in (41) ;do
if [ -e "$i"];then # or use'-a $i'
cat (42)
fi
done
A.$#
B.$i
C.$!
D.$@