Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイル内の行をループしています。「#」で始まる行をスキップするだけです。それ、どうやったら出来るの?
#!/bin/sh while read line; do if ["$line doesn't start with #"];then echo "line"; fi done < /tmp/myfile
助けてくれてありがとう!
while read line; do case "$line" in \#*) continue ;; esac ... done < /tmp/my/input
ただし、率直に言って、以下に目を向ける方が明確な場合がよくありgrepます。
grep
grep -v '^#' < /tmp/myfile | { while read line; ...; done; }