Sponsored Content
Top Forums Shell Programming and Scripting Help with generate a pair of random number Post 302964777 by perl_beginner on Tuesday 19th of January 2016 05:24:29 AM
Old 01-19-2016
Help with generate a pair of random number

Hi,

Is anybody experience generate a pair of random number by using awk command?
I wanna to generate a pair of random number (range from 1 to 4124) and repeats it 416 times.

Desired output
Code:
2 326
123 1256
341 14
3245 645
.
.
.

I did write the below command:
Code:
awk "BEGIN{srand($RANDOM); for(i=1;i<416;i++)print int(1+ rand()*4124)}"
1013
4078
2606
2086
1019
373
.
.

But it only able to generate a single random number (range from 1 to 4124) and repeats it 416 times.

I wish to generate a pair of random number (range from 1 to 4124) and repeats it 416 times.
Thanks for any advice.
 

10 More Discussions You Might Find Interesting

1. Programming

How to generate a random number?

How to generate a random integer with specific range(for example, from 1 to 1000)? Also, how to convert a floating point number into a integer? (2 Replies)
Discussion started by: MacMonster
2 Replies

2. Shell Programming and Scripting

generate random number in korn shell

I want to be able to generate a random number within a korn shell script.. Preferably i would like to be able to state how many digits should be in this random number... ie 4 digits or 5 digits etc Any ideas? (2 Replies)
Discussion started by: frustrated1
2 Replies

3. Shell Programming and Scripting

Generate a random password

Hello All... Can someone help me generate a random password which will be 7 characters long which contains alpha-numeric characters using shell script. I am looking to store the output of the script that generates the password to a variable within a script and use it as the password. ... (5 Replies)
Discussion started by: chiru_h
5 Replies

4. Shell Programming and Scripting

generate random number in perl

Could any one tell how can I generate random number from (0, 100..200) in perl? Thanks! (2 Replies)
Discussion started by: zx1106
2 Replies

5. Programming

Generate Random Password in C

I need a function to generate a random alphanumeric password in C code. It needs to be between 6-8 characters and follow the following rules: Reject if same char appears # time: 4 or more Reject if same char appears consecutively: 3 or more I have the following random password working for... (2 Replies)
Discussion started by: vjaws
2 Replies

6. Programming

Generate random number

I saw this formula to generate random number between two specified values in shell script.the following. $(((RANDOM%(max-min+divisibleBy))/divisibleBy*divisibleBy+min)) Give a example in book. Generate random number between 6 and 30.like this. $(((RANDOM%30/3+1)*3)) But I have a... (1 Reply)
Discussion started by: luoluo
1 Replies

7. Shell Programming and Scripting

Unix random number generate in given range

Hi All, I have extracted some report from database for few activities done. Now I have a requirement to add some random time(In range of 10-35) in front of each activity. Can be generated random numbers in any bash/sh shell within a given number range, let's say in between 10-30. ... (10 Replies)
Discussion started by: gr8_usk
10 Replies

8. UNIX for Dummies Questions & Answers

how to generate random number as as the first column of a txt file

Dear all, I have a question. I have a txt file say 4000 rows X 1800 Column. I 'd like to creat a new column as the first column which is a column of random numbers (n=4000) thanks a lot! Lin (2 Replies)
Discussion started by: forevertl
2 Replies

9. Shell Programming and Scripting

Need to generate a file with random data. /dev/[u]random doesn't exist.

Need to use dd to generate a large file from a sample file of random data. This is because I don't have /dev/urandom. I create a named pipe then: dd if=mynamed.fifo do=myfile.fifo bs=1024 count=1024 but when I cat a file to the fifo that's 1024 random bytes: cat randomfile.txt >... (7 Replies)
Discussion started by: Devyn
7 Replies

10. OS X (Apple)

Generate a random number in a fully POSIX compliant shell, 'dash'...

Hi all... Apologies for any typos, etc... This took a while but it didn't beat me... Although there are many methods of generating random numbers in a POSIX shell this uses integer maths and a simple C source to create an executable to get epoch to microseconds accuracy if it is needed. I take... (8 Replies)
Discussion started by: wisecracker
8 Replies
CWGEN(1)						      General Commands Manual							  CWGEN(1)

NAME
cwgen - generate groups of random characters for Morse code practice SYNOPSIS
cwgen [-g --groups=groups] [-n --groupsize=groupsize] [-n --groupsize=group_min-group_max] [-r --repeat=repeat] [-x --limit=limit] [-c --charset=charset] [-h --help] [-V --version] cwgen installed on GNU/Linux systems understands both short form and long form command line options. cwgen installed on other operating systems may understand only the short form options. Options may be predefined in the environment variable CWGEN_OPTIONS. If defined, these options are used first; command line options take precedence. DESCRIPTION
cwgen provides a simple method to generate groups of random characters for use as input into cw. Command line options control the group size, number of groups, and character set from which the random characters are selected. COMMAND LINE OPTIONS cwgen understands the following command line options. The long form options may not be available in non-LINUX versions. -g, --groups Specifies the number of groups of random characters to generate. The default value is 128. -n, --groupsize Specifies either the number of random characters in each group, if a single value is given, or a range for the number of random characters in each group if a dash-separated pair of values is given. If a range is given, cwgen generates groups sized randomly between 'group_min' and 'group_max'. The default value is 5. -r, --repeat Specifies the number of times to repeat each group. The default value is 0, indicating that each group is printed just once. -x, --limit Specifies an upper limit on the number of characters printed. This option is useful when using random group sizes, to ensure a given amount of practice text. The default value is 0, indicating no upper limit on the number of characters printed. -c, --charset Defines the character set from which the random characters are selected. The default value is 'ABCDEFGHIJKLMNOPQRSTU- VWXYZ0123456789'. EXAMPLES
Generate 20 groups of 10 characters from the set EISH5, and sound them as Morse code. Both short-form and long-form option examples are shown: cwgen -g 20 -n 10 -c "EISH5" | cw -w 25 -t 850 cwgen --groups=20 --groupsize=10 --charset="EISH5" | cw --wpm=25 --tone=850 SEE ALSO
Man pages for cw(7,LOCAL), libcw(3,LOCAL), cw(1,LOCAL), cwcp(1,LOCAL), and xcwcp(1,LOCAL). cwgen ver. 3.0.1 CW Tutor Package CWGEN(1)
All times are GMT -4. The time now is 10:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy