while read line ksh的相關文章
while read line ksh的相關商品

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