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

The Archive Base Latest Questions

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

Here is script i am planning to use to generate 500 test files populated

  • 0

Here is script i am planning to use to generate 500 test files populated with random data.

for((counter=1;counter<=500;counter++));
          do
             echo Creating file$counter;
             dd bs=1M count=10 if=/dev/urandom of=file$counter;

               done

But what i need the script to do is make those 500 files to be of variable size as in let say between 1M and 10M; ie, file1=1M, file2=10M, file3=9M etc …

any help?

  • 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-18T12:38:34+00:00Added an answer on May 18, 2026 at 12:38 pm

    This will generate 500 files each containing between 1 and 10 megabytes of random bytes.

    #!/bin/bash
    max=10    # number of megabytes
    for ((counter=1; counter<=500; counter++))
    do
        echo Creating file$counter
        dd bs=1M count=$(($RANDOM%max + 1)) if=/dev/urandom of=file$counter
    done
    

    The second line could instead be:

    for counter in {1..500}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example, my goal is to test the code given here: PHP script that
here is my script: from random import * from turtle import * while True:
I have a host with php+mysql and i need to run a script here
Here is the script I'm using, copied directly from Google: <script type=text/javascript> var _gaq
Here is my script : <body> <div id =mainCategory class='fade'> Category</div> <div id=divSubCategory> Category1
My script is here : jsfiddle i have two attributes in my form that
Here is my script... all I want to do is have it continuously loop!
Here is my script #!/usr/bin/env ruby if __FILE__ == $0 `cd ..` puts `ls`
Here is a script I can't get to work correctly. It's purpose is to
Here's my script with the personal bits scrubbed. import urllib, urllib2, cookielib cj =

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.