coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Student contribution


From: Desirée Zahradnicek
Subject: Student contribution
Date: Sun, 7 May 2017 19:58:34 -0300

Hi, mi name is Desirée Zahradnicek and I'm in the last year of
Information Systems Engineering. As a requirement for subject called
Free Software I have to make a contribution to a free software
project, and I thought about contributing to coreutils.
I have a small but useful idea in mind, I'm thinking about adding an
option to the program "tail" to make it print the last lines of a file
filling the terminal height. I think this could be very useful on its
own and more so in combination with watch. I created a really small
shell script to emulate the functionality:

#!/bin/bash
nlines=$(( $(tput lines) - 2 ))
tail -$nlines $1

I'm writing to ask if you think this could be included so I can start
to work on it.

Thanks in advance,
Desirée Zahradnicek



reply via email to

[Prev in Thread] Current Thread [Next in Thread]