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 8301505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T16:58:39+00:00 2026-06-08T16:58:39+00:00

I have this script where I’m reading a text file line by line and

  • 0

I have this script where I’m reading a text file line by line and executing a command. I found that the strings (aka lines) always ends with '\r'.

I wanna remove the CR from the end of the string.

This is how my code looks like:

file="myfilelist.txt"

while IFS= read -r filename
do

git log --oneline -- ${filename} |wc -l

done <"$file"

I wanna be able to perform the command in the loop without \r at the end of every line string (aka filename).

  • 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-08T16:58:40+00:00Added an answer on June 8, 2026 at 4:58 pm

    Try this:

    git log --oneline -- $(echo "$filename" | tr -d '\r') | wc -l
    

    Note that you don’t need the curly braces when $filename is surrounded by whitespace.

    In principle you can also do this via bash’s own parameter expansion mechanism:

    git log --oneline -- ${filename%^M} | wc -l
    

    but the ^M has to be a literal control-M character, which is ugly and difficult to maintain.

    Or you can delete all whitespace characters at the end of the name (which includes ^M as well as space, tab, et al):

    git log --oneline -- ${filename%[-[:space:]]} | wc -l
    

    But now we’re getting into techniques that very few people are likely to recognize without reading the manual.

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

Sidebar

Related Questions

I have this script in index.php file: <script type=text/javascript> $(document).ready(function(){ $('#ads').load('output.php').fadeIn('slow'); }); </script> And
I have this script that I found which allows me to have userside Ajax
I have this script that needs to replace a file extension and it is
I have this script that run to fix my menu bar to the browser
I have this script set up that echoes all relevant users in a database
I have this script $('head').append('<link rel=stylesheet href=css/file1.css type=text/css />'); $('head').append('<link rel=stylesheet href=css/jquery.jscrollpane.css type=text/css />');
I have this script that will let the user download the data from the
I have this script I am working on that utilizes the oCanvas JS Library
I have this script that works with iconv to automatically convert the encoding of
I have this script protovis : <script type=text/javascript+protovis> var w = 600; var h

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.