Skip to main content

Head and Tail Commands in Linux


Head Command

Description : prints output of first part of the file by default it will print first 10 lines

Syntax : head filename

examples:

1.  head upcasting.java


it will print first 10 lines of the file upcasting.java by default.

2. head -n 50 upcasting.java
 it will print first 50 lines of the file upcasting.java.

3. head upcasting.java downcasting.java
it will print first 10 line of the 2 files upcasting.java and downcasting.java.

4. head *.java
it will print all the java files first 10 lines.

5. head *.java *.class
it will print all the java and class files first 10 lines.


Tail Command:

Description : prints output of last part of the file by default it will print last 10 lines

Syntax : tail filename

Examples:

1. tail upcasting.java
it will print last 10 lines of the file upcasting.java by default.

2. tail -n 50 upcasting.java
 it will print last 50 lines of the file upcasting.java.

3. tail upcasting.java downcasting.java
it will print last 10 line of the 2 files upcasting.java and downcasting.java.

4. tail *.java
it will print all the java files last 10 lines.

5. tail *.java *.class
it will print all the java and class files last 10 lines.

Practice Examples:

1. How to Print the 11th line of the file ?

    head -n 11 upcasting.java | tail -n 1

2. How to print lines from 5 to 11th of the file ?

    head -n 11 upcasting.java | tail -n 5

3.  How to print number of lines head and tail command file (by default it will  print 10 lines)?
   
    head upcasting.java | wc -l
    tail upcasting.java | wc -l


    both will return 10

    head -n 20 upcasting.java | wc -l
    tail -n 20 upcasting.java | wc -l


   both will return 20

   for number of word wc -w and number of characters wc -c

   head upcasting.java | wc -c
   it will print number of first 10 lines characters in digits

   tail upcasting.java | wc -c
   it will print number of last 10 lines characters in digits
 

   head upcasting.java | wc -w
   it will print number of first 10 lines words in digits

   tail upcasting.java | wc -w
   it will print number of last 10 lines words in digits

4. How to get First and last 5 files of java in a java directory?

   ls *.java | tail -n 5  
   ls *.java | head -n 5
 
   ls -l *.java | tail -n 5  
   ls -l *.java | head -n 5

5. ls -la *.class | tail -n 12 | wc -l  it will return 12

6.  ls -la *.class | tail -n 12
it will shows last 12 class files list

7.  ls -la *.class | head -n 12 
it will shows first 12 class files list.  

8.      head -c 10 downcasting.java
9.      tail -c 10 downcasting.java
10.   head -c 400  downcasting.java | tail -n 3

(updates still come)

Comments

Popular posts from this blog

"How to maintain or retain tabs in same tab after button click events or postback?" using JQuery in ASP.NET C#

In this post I'll share an details about " How to maintain or retain tabs in same tab after button click events or postback? " Step 1: you need to download Jquery and JQueryUI Javascript libraries from this site http://jqueryui.com/ Step 2: As usually you can create ASP.NET website from Visual Studio IDE and add Jquery and JqueryUI plugins in the header section of aspx page. Step 3: Add HiddenField control inside aspx page which is very useful to retain tab in same page Step 4: Use the HiddenField ID in Jquery code to indicate that CurrentTab Index Step 5: In code Behind, using Enumerations concept give the tab index values as user defined variable  Step 6: Use the Enum values in every Button click events on different tabs to check that tab could be retained in the same tab Further, Here I'll give the code details and snap shot pictures, 1. Default.aspx: Design Page First Second Third ...

Guidewire Related Interview Question and answers part 1

common Guidewire questions and answers 20 Guidewire BC Q&A Top 100 Guidewire Interview FAQ Guidewire Claimcenter 20 Interview Questions Guidewire Rating concepts

Login and Registration forms in C# windows application with Back end Microsoft SQL Server for data access

In this article, I'm gonna share about how to make login and register form with MS SQL database; 1. Flow Chart Logic 2. Normal Features 3. Form Designs Login Form Design Sign in Form Design Password Retrieve Form 4. Database Design and SQL queries and Stored Procedure Create new Database as "schooldata" create table registerdata (  ID int identity,  Username nvarchar(100),  Password nvarchar(100),  Fullname  nvarchar(100),  MobileNO nvarchar(100),  EmailID nvarchar(100)  ) select * from registerdata create procedure regis (  @Username as nvarchar(100),  @Password as nvarchar(100),  @Fullname as nvarchar(100),  @MobileNO as nvarchar(100),  @EmailID as nvarchar(100)  ) as begin insert into registerdata (Username, Password, Fullname, MobileNO,EmailID) values (@Username, @Password, @Fullname, @MobileNO, @EmailID) ...