1
端末ウィンドウに正しく表示されないprintf文があります。 正しく最初の二つの表示が、第三printf "Writing to %s$output%s" "$biwhite" "$color_off"
は$output
bashでprintfが正しく表示されない
それはある種のバグのように感じているの最後の数文字を除いて表示されません。 printf
にecho
を代入すると、線が正しく表示され、着色が減ります。 私はすべての文を1つに入れようとしましたprintf
同じ結果を返します。それはあたかもprintf
がその文を本当に嫌うかのようです。私はそれを引き起こす可能性のあるものを紛失している。私はOSXで働いています。
biwhite=$(tput bold)$(tput setaf 7)
#bired=$(tput bold)$(tput setaf 1)
color_off=$(tput sgr0)
date="$(date +%Y%m%d)"
while [[ $# -gt 0 ]] ; do
input="$1" #name $input as the first arugment sent to script
if [ -d "$input" ] ; then #if argment is a directory, run md5deep
target="${input%/}" #strip the trailing /, if any
target="${target##*/}" #drop the leading directory componenets i.e. get basename
output="$input"/"$target"_"$date"_checksums.md5 #set .md5 file to $output
printf "%s${input##*/}%s is a directory.\n" "$biwhite" "$color_off"
printf "Making checksums of all files in %s$input%s\n" "$biwhite" "$color_off"
printf "Writing to %s$output%s" "$biwhite" "$color_off"
md5deep -bre "$input" >> "$output" #create md5 hash (hashes) of $input and write results to $output
fi
shift
done
Ahhh参照してください... '$ output'は表示されたときに色付けしたいファイルパスですので、' $ biwhite'と '$ color_off'でブックエンドする必要があると思った – Bleakley
確かに - '' $ biwhite ''、' '$ output''、 '' $ color_off "'の3つのプレースホルダーを入れたり、プレースホルダを1つしか持たずに完全な連結文字列を渡すことで、 'output'の内容を書式文字列として解析しなくても、同じ効果が得られます。 –
ありがとう!とても役に立ちました! – Bleakley