Suppose I have the file temp.txt with the following content:
1
2
3
4
5
6
How would you read the file's content starting from line number 3 using BASH so that the output would be like this:
3
4
5
6
Suppose I have the file temp.txt with the following content:
1
2
3
4
5
6
How would you read the file's content starting from line number 3 using BASH so that the output would be like this:
3
4
5
6
shows all lines, starting from 3 of
filename
.A bash-only solution (for the sake of fun):