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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:11:18+00:00 2026-05-26T12:11:18+00:00

I have text file, names.txt, with every row containing a last name: Smith Johnson

  • 0

I have text file, names.txt, with every row containing a last name:

Smith
Johnson
Morgan
...
...

I’d like to add seven random numbers between 0 and 100 to each line to make it look like this:

Smith 76 94 56 99 32 21 11
Johnson 54 15.2 19.8 32.66 44.99 22.63 18.99 
Morgan 99 18.6 24.75 99.22 35.18 65.34 54.22
....
....

I tried using this command in awk:

$ awk '{print $0; for (myvar = 1; myvar <= 7; myvar++) print rand()*100}' names.txt 

but that gave me

Smith
76
94
56

etc.

I know I have to use printf, somehow to make it work, and I tried this:

$ awk '{printf $0; for (myvar = 1; myvar <= 7; myvar++) printf rand()*100}' names.txt 

but with that, I get no end-of-lines anywhere. The whole thing is just one line.
I’ll very much appreciate any suggestions.

  • 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-26T12:11:19+00:00Added an answer on May 26, 2026 at 12:11 pm

    Add line terminator at the end of each line

    awk '{printf "%s ", $0; for (myvar = 1; myvar <= 7; myvar++) \
         printf "%d ", rand()*100; printf "\n"}' names.txt
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file which contains something like this: Hello, my name is
I have an .erb file where I'd like to return the following text: Name
Php noob. I have this text file (names.txt) with comma separated names and codes.
I have a text file named num.txt who's only contents is the line 123
I have this xml file which has text init. i.e Hi my name is
I have text file with some stuff that i would like to put into
I have text file with something like first line line nr 2 line three
I have a text file that lists the names of a large number of
I have a text file named C:/test.txt : 1 2 3 4 5 6
I have a text file which has got several names in it example: mathew

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.