17 Şubat 2020 Pazartesi

less komutu

Giriş
more komutunun daha gelişmiş halidir. Açıklaması şöyle.
more is the oldest, less is an improvement and most is an improvement on that.
Kısayollar
Açıklaması şöyle
Navigate:
j: go one line down
k: go one line up
z: go one page down
w: go one page up
g: go to the top
G: go to the bottom

You can also search in the documentation:
/: search from the cursor downwards
?: search from the cursor upwards
n: go to the next match
N: go to the previous match

Karşılaştırma
Açıklaması şöyle.
Short comparison:

more: forward navigation and limited backward navigation.

less: both forward and backward navigation and also has search options. You can go to the beginning and the end of a file instantly. Plus you can switch to an editor (like open the file in vi or vim). It is noticeably quicker than editor for when the file is large.

most: has all the features of more and less but you can also open multiple files, close 1 file at a time when you have multiple files open, allows locking and scrolling of the open windows and allows for splitting of open windows.
Bellek Kullanımı
Çok az bellek kullandığı için büyük dosyaları görmek için kullanılabilir. Açıklaması şöyle.
GNU less only uses a default of 64k of buffer space when viewing an arbitrarily large file.
Sayfalama
Açıklaması şöyle.
The output is paged through less by default, and long lines are "truncated" to screen
width. The hidden part can be viewed by using the left-arrow and right-arrow keys. Paging
can be disabled; see the --no-pager option and the "Environment" section below.
-F seçeneği
Açıklaması şöyle.
Exit if the entire file can be displayed on the first screen (F)
Şöyle yaparız
git config --global core.pager 'less -FRSX'
-R seçeneği
Açıklaması şöyle.
Output the raw control characters for terminal formatting (R)
-S seçeneği
Açıklaması şöyle.
Chop long lines (S)
-X seçeneği
Açıklaması şöyle.
Don't send the init/de-init strings to the terminal - avoids clearing the screen on exit (X)
Tuşlar
less kullanırken bazı tuşlar da işe yarar.
1. Q Tuşu
less uygulmasından çıkış sağlar. Açıklaması şöyle.
 q or Q or :q or :Q or ZZ
          Exits less.





Hiç yorum yok:

Yorum Gönder