get the first 5 characters from each line in shell script - Stack Overflow
經安全檢測,此網站為安全網站,請放心前往原始網址!
get the first 5 characters from each line in shell script - Stack Overflow
bin/sh filename='sample.txt' filelines=`cat $filename` while read -r line do id= cut -
c-5 $line echo $id #code for passing id to other script file as ...