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.
任意の行数 (たとえば 125 行) のファイルがあるとします。最初の n 行 (たとえば 20 行) を除くすべての行を取得したいとします。したがって、行 21 ~ 125 が必要です。
tail/headまたは他のツールでこれを行う方法はありますか?
tail
head
試す
tail -n +21 myfile.txt
sed -i 1,20d filename
最初の20行を削除したい場合!
AWKパワーも使用できます:
awk -- 'NR > 20' /etc/passwd
私はこれで錆びていますが、次のようなものです:tail -n +20 filename