1. 擷取字串的前8位expr substr "$string" 1 8echo $string | awk '{print substr(,1,8)}'echo $string | cut -c1-8echo $string | dd bs=1 count=8 ...
確定! 回上一頁