Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8951259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:37:20+00:00 2026-06-15T13:37:20+00:00

I hava a csv(delimiter:commaseparated) file like this a,b,c,d There are approximate 10000 lines in

  • 0

I hava a csv(delimiter:commaseparated) file like this
a,b,c,d
There are approximate 10000 lines in csv file like above.
Whatever written at last field i have to change with ‘e’.

Eg.
Input file

a,b,c,d
e,f,g,h
i,j,k,l
m,n,o,p

Output file

a,b,c,e
e,f,g,e
i,j,k,e
m,n,o,e

As you can see d(first line last element),h(second line last element),l(third line last element),p(fourth line last element)
…All are replaced by ‘e’.

How can i change this by shell scripting on linux.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:37:21+00:00Added an answer on June 15, 2026 at 1:37 pm

    One way using awk:

    awk -F, '{$NF="e";}1' OFS=, file
    

    $NF indicates the last field of the file. Just by setting “e” to $NF gets your job done. 1 is to print every line.

    -F => to specify the input field separator,
    OFS => to specify the o/p field separator

    One more option using sed:

    To change the file in place using GNU sed:

    sed -i 's/\(.*,\).*/\1e/' file
    

    sed matches the pattern till the last comma and groups it which is available is \1. By just appending “e”, we get the solution.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I hava a binary file like this : offset | size/type | Description -------+-----------+-----------------------------------------------------------
I hava text file full of values like this: The first line is a
I hava a jar with a main file like this: public class StartMesekocka3D {
I hava a CSV file that I want to treat as source code. Essentially
i hava a c++ method(for java,jni) like follow,when i repeat call this from java
I hava a java program, a section of it is compute intensive, like this
I hava a class like this: public class tbl050701_1391_Fields { public static readonly string
I hava a data structure that looks like this: (def conf { :devices [{:alias
i hava made a select box of skills..there are skills listed in it.. if
I hava a php variable that contain JSON type data. $list = [{id:10,first_name:first,mi_name:,last_name:last,nick_name:HH}]; and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.