Bash command to cut output after x number of lines
Solution 1:
Use head:
ls -l | head -n 15
10 lines is the default. Read the head man page for more options.
(older versions of head also support usage without the explicit -n
as in head -15
)