WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start Linux command line typing Practice. using sed command line, sed version, installation, read, write and delete in linux file system, using curl command, a different file name or location curl typing practice.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1//installing sed [user]: ~$ sudo apt-get install sed //Check Version [user]: ~$ sed --version //read a text file [user]: ~$ sed ā€˜ā€™ text.txtPrograms //deleting first line in file [user]: ~$ sed ā€˜1dā€™ text.txt command reads the second line and writes it in the text2.txt file. [user]: ~$ sed '2~2 w text2.txt' text.txt [user]: ~$ cat text2.txt1.1 using sed command linux typing practice
2//know th curl version curl --version curl testdomain.com //This will render the complete source code of the homepage curl -O http://testdomain.com/testfile.tar.gz //-o lets you specify a different file name or location curl -C - -O http://testdomain.com/testfile.tar.gz //interrupt less download curl -O http://testdomain.com/testfile.tar.gz -O http://mydomain.com/myfile.tar.gz //multiple file download curl -I www.testdomain.com //header information of a website1.2 using curl command typing practice