filename=${1:-/etc/hosts}
和 和有什么区别filename=/etc/hosts
?
例如:
filename=/etc/hosts
if [ -r "$filename" ] && [ -s "$filename" ]; then
md5sum $filename
else
echo "$filename cannot be processed"
fi
和
filename=${1:-/etc/hosts}
if [ -r "$filename" ] && [ -s "$filename" ]; then
md5sum $filename
else
echo "$filename cannot be processed"
fi
答案1
filename=${1:-/etc/hosts}
如果未设置或为 null,/etc/hosts
则为变量赋值。filename
$1
${parameter:-word}
如果
parameter
未设置或为空,则替换单词的扩展。否则,parameter
将替换的值。