ファイルから「N番目」オフセットに移動する方法

ファイルから「N番目」オフセットに移動する方法

取得するにはコマンドが必要です。窒素 ファイルの最初のオフセットです。
これが私のファイルの内容だとしましょう。

[root@localhost ~]# cat /file1.txt
this is the the first line of many lines
and is just a sample file

このコマンドを使用して、6番目のオフセットで文字を検索したいと思います。この場合はi

vi動作するコマンドまたはエディタコマンドはありますか?

ベストアンサー1

dd bs=1 skip=5 count=1 <infile

i

...または共有したい場合...

{ dd bs=5 skip=1 count=0; cat; } <infile

is the the first line of many lines
and is just a sample file

...これにもかかわらずオフセットによってバイトいいえ性格。それにもかかわらず、通常の入力ファイルのオフセットをdd見つけて一致させるのは簡単ではありません。

おすすめ記事