You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Zouhair AMAZZAL cbdc5c4a6f feat(head-and-tail): add subject, test and solution for new a exercise 2 years ago
..
README.md feat(head-and-tail): add subject, test and solution for new a exercise 2 years ago

README.md

head-and-tail

Instructions

Create the script head-and-tail.sh wich will show the first and last lines of the file HeadTail.txt

$./head-and-tail.sh | cat -e
Hello My username is: <...>,$
so my passwd is: <...>$
$

Hints

With curl you can get the content of the file from the url:

$curl https://assets.01-edu.org/devops-branch/HeadTail.txt
<...>
$

head print the top N number of data of the given input. By default, it prints the first 10 lines of the specified files:

$head file
<first 10 lines>
$head -1 file
<first 1 line>
$

tail print the last N number of data of the given input. By default, it prints the last 10 lines of the specified files:

$tail file
<last 10 lines>
$tail -1 file
<last 1 line>
$

May you will need to use pipe (|) and "&&".