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.
次のように、最後に変更されたファイルを一覧表示するエイリアスを指定します。
エイリアス lt='ls -ltc|head -10'
表示可能な行を決定する方法があるので、その関数であるフィルター/制限を設定できます。
行折り返しなどの他の問題は気にしません。
現在の端末で表示可能な行数は、$LINES変数で利用できます。
$LINES
端末のサイズは次の方法で取得できます。
stty size
行と列の数で応答します。例:
25 80
と
stty size | awk '{print $1;}'
行数だけが表示されます。