22 Ekim 2019 Salı

tac komutu

Giriş
Dosyayıs tersinden gösterir.

Örnek
Şöyle yaparız.
$ echo -e "Hello\nNew\nWorld\n!" > file
$ tac file
!
World
New
Hello
-b seçeneği
Açıklaması şöyle.
-b, --before
The separator is attached to the beginning of the record that it precedes in the file.
Örnek
Şöyle yaparız.
$ echo -e "Hello\nNew\nWorld\n!" > file
$ tac -b file


!
World
NewHello

Hiç yorum yok:

Yorum Gönder