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

  • Home
  • SEARCH
  • 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 355089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:59:07+00:00 2026-05-12T11:59:07+00:00

I have 7 lines of text: a b c d e f g Now

  • 0

I have 7 lines of text:

a
b
c
d
e
f
g

Now I want to add characters to the end of each line, to end up with:

a,
b,
c,
d,
e,
f,
g,

I found that I can use the “sed” command and run my selection through sed using “Filter through command” in Textmate

sed 's/$/,/'

Now, one question remains: how do I turn this into a Textmate command that takes input in some sort of way (so it knows what text to append)?

(My tries in doing this have proven unsuccessful)

  • 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-05-12T11:59:08+00:00Added an answer on May 12, 2026 at 11:59 am

    Pop this into a command within the Text bundle, it’ll append whatever is in the clipboard to the end of all lines that have been selected:

    #!/bin/bash
    if [[ $(pbpaste|wc -l) -eq 0 ]]
        then r=`pbpaste`
        sed 's/$/'$r'/'
        else sed 's/$/,/'
    fi
    

    It’s currently limited to appending one line’s worth of text, if the clipboard contains more than one line it will default to a comma at the end of the selected lines.

    Edit:

    To take this a little further, here’s a version that provides a dialog box which prompts for the input of the string that will be appended to each line in the selection:

    #!/bin/bash
    r=$(CocoaDialog inputbox --title "String to be appended to EOL" \
       --informative-text "Enter string:" \
       --button1 "Okay" --button2 "Cancel")
    
    [[ $(head -n1 <<<"$r") == "2" ]] && exit_discard
    
    r=$(tail -n1 <<<"$r")
    
    sed "s/$/$r/"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Right now i have a line of code, in vb, that calls a text
I have multiple lines of text entered into a single MySQL longtext cell that
I have some text lines like that : vt_wildshade2^508^508 vt_ailleurs2^1188^1188 ... vt_high2^13652^13652 Is it
I want to have 5 lines for the height of the text area. I
I have some text which I want to have on separate lines. I try
I have multiple lines of texts in a text file that look similar to
I have a form in which user can add more fields, as he want...
I have a text file that I parse each month and insert the data
lets say i have 5 lines within a txt file called users.txt each line
Ok, I have the following function: function TfPackagedItemEdit.GetRTFDescription: TStringList; begin Result.Text := richDescription.Lines.Text; //stringlist

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.