shell - skip lines while reading text files from ksh - Stack Overflow

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 ......看更多