while read line ksh的相關文章
while read line ksh的相關公司資訊

shell - skip lines while reading text files from ksh - Stack Overflow
瀏覽:465
日期:2025-04-26
You can do for example this (read.sh): #!/bin/ksh while read line do [[ $line = \#* ]]
&& continue echo $line done < read.sh ......看更多