-1

現在、私は実行しています:

head -1274954 /path/to/dump.sql | tail -1

これは 1 行を示しています。その上に 10 行、下に 10 行を表示したいと思います。

4

2 に答える 2

1

それだけではない理由:

$ head -1274964 /path/to/dump.sql | tail -20

?

于 2012-10-02T12:39:01.030 に答える
0

小切手$ man head

NAME
   head - output the first part of files

小切手$ man tail

NAME
   tail - output the last part of files

(|)head コマンドの出力を tail コマンドにパイプしています。そのため、最初の 1274954 行から最後の行を出力しています。

$ head -1274964 /path/to/dump.sql | tail -20

1274964 行までの出力を生成し、head コマンドの出力の下部にある 20 行を出力する tail コマンドにパイプします。

于 2012-10-02T13:01:39.250 に答える