Sponsored Content
Top Forums Shell Programming and Scripting Generating a POSIX random number? Post 302977390 by wisecracker on Sunday 17th of July 2016 08:40:24 AM
Old 07-17-2016
Addendum to Rudis' post:-
MacBook Pro 13 inch, circa August 2012, OSX 10.7.5, default terminal calling OSX's 'sh'.
Test code, not conforming entirely to POSIX!
Code:
#!/bin/sh
for n in {1..4}
do
	TMP=$(awk ' BEGIN {printf( "%d %d\n", 16 * rand(), 16 * rand() )}')
	byteone=${TMP% *}; bytetwo=${TMP#* }
	echo "$byteone $bytetwo"
done

Results:-
Code:
Last login: Sun Jul 17 13:31:28 on ttys000
AMIGA:barrywalker~> cd Desktop/Code/Shell
AMIGA:barrywalker~/Desktop/Code/Shell> ./RAND2.sh
13 6
13 6
13 6
13 6
AMIGA:barrywalker~/Desktop/Code/Shell> ./RAND2.sh
13 6
13 6
13 6
13 6
AMIGA:barrywalker~/Desktop/Code/Shell> ./RAND2.sh
13 6
13 6
13 6
13 6
AMIGA:barrywalker~/Desktop/Code/Shell> _

So I assume 'srand()' is needed if only to change the seed per call...
EDIT:
Using 'srand()' and without 'sleep 1' then with 'sleep 1'...
I do test on various *nix style platforms including CygWin.
Code:
#!/bin/sh
for n in {1..4}
do
	TMP=$(awk ' BEGIN { srand(); printf( "%d %d\n", 16 * rand(), 16 * rand() ); }')
	byteone=${TMP% *}; bytetwo=${TMP#* }
	echo "$byteone $bytetwo"
	#sleep 1
done

Results:-
Code:
AMIGA:barrywalker~/Desktop/Code/Shell> ./RAND2.sh
12 13
12 13
12 13
12 13
AMIGA:barrywalker~/Desktop/Code/Shell> ./RAND2.sh
3 9
1 15
7 6
13 12
AMIGA:barrywalker~/Desktop/Code/Shell> ./RAND2.sh
11 14
11 14
11 14
11 14
AMIGA:barrywalker~/Desktop/Code/Shell> ./RAND2.sh
3 2
1 9
14 7
12 6
AMIGA:barrywalker~/Desktop/Code/Shell> _

So to conclude the 'srand()' function is only accurate to the _timer's_ second value and not 'milli' or 'micro' second values. Hence the 'sleep 1' to advance the _timer_ by 1 second.
Don's code works with or without 'sleep', hence I can now understand why 'while(1)' is being used.

Last edited by wisecracker; 07-17-2016 at 10:01 AM.. Reason: See EDIT:
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Generating random number within a specific range (0.5-1.5)

Hello, need a way to generate numbers within 0.5-1.5 range Has to be totally random: 0.6 1.1 0.8 1.5 0.6 and so on.... How to? (10 Replies)
Discussion started by: TehOne
10 Replies

2. Shell Programming and Scripting

Generating random numbers

Hi, I am having trouble with generating random numbers. can this be done with awk? So I have a file that looks like this: 23 30 24 40 26 34 So column1 is start and column2 is end. I want to generate 3 random #'s between start and stop: So the output will look like this: ... (9 Replies)
Discussion started by: phil_heath
9 Replies

3. Programming

generating 16 digit random number in C

Hi, How can we generate 16 digit random nos in C. (10 Replies)
Discussion started by: ajaysahoo
10 Replies

4. Programming

C Help; generating a random number.

Im new to C, and Im having a hard time getting a random number. In bash, I would do something similar to the following to get a random number; #!/bin/bash seed1=$RANDOM seed2=$RANDOM seed3=$RANDOM SEED=`expr $seed1 * $seed2 / $seed3` echo ${SEED%.*} Now, in online examples... (4 Replies)
Discussion started by: trey85stang
4 Replies

5. Programming

Generating Random Number in Child Process using Fork

Hello All, I am stuck up in a program where the rand functions ends up giving all the same integers. Tried sleep, but the numbers turned out to be same... Can anyone help me out how to fix this issue ? I have called the srand once in the program, but I feel like when I call fork the child process... (5 Replies)
Discussion started by: manisum
5 Replies

6. Shell Programming and Scripting

Generating Random Number in certain range

Hi there I am trying to generate a random number between 40 and 70 using the shell here is my code so far and it keeps going above 70. all help much appreciated! comp=$(( RANDOM%70+40 )) echo $comp (4 Replies)
Discussion started by: faintingquiche
4 Replies

7. Shell Programming and Scripting

Random number generating script?

Having a hard time with this. Very new to scripting and linux. Spent all sunday trying to do this. Appreciate some help and maybe help breaking down what the syntax does. Create a Bash program. It should have the following properties • Creates a secret number between 1 and 100 i. The... (3 Replies)
Discussion started by: LINUXnoob15
3 Replies

8. Shell Programming and Scripting

Generating a Random String of 'n' length

Hi, How can I generate a string of random characters (alpha+numeric) of a particular length ? For e.g. for n=5, output = 'kasjf' n=10, output = 'hedbcd902k' Also, please let me know if random (valid) dates could also be generated. Thanks (7 Replies)
Discussion started by: rishigc
7 Replies

9. 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
CPANPLUS::Shell(3pm)					 Perl Programmers Reference Guide				      CPANPLUS::Shell(3pm)

NAME
CPANPLUS::Shell SYNOPSIS
use CPANPLUS::Shell; # load the shell indicated by your # config -- defaults to # CPANPLUS::Shell::Default use CPANPLUS::Shell qw[Classic] # load CPANPLUS::Shell::Classic; my $ui = CPANPLUS::Shell->new(); my $name = $ui->which; # Find out what shell you loaded $ui->shell; # run the ui shell DESCRIPTION
This module is the generic loading (and base class) for all "CPANPLUS" shells. Through this module you can load any installed "CPANPLUS" shell. Just about all the functionality is provided by the shell that you have loaded, and not by this class (which merely functions as a generic loading class), so please consult the documentation of your shell of choice. BUG REPORTS
Please report bugs or other issues to <bug-cpanplus@rt.cpan.org<gt>. AUTHOR
This module by Jos Boumans <kane@cpan.org>. COPYRIGHT
The CPAN++ interface (of which this module is a part of) is copyright (c) 2001 - 2007, Jos Boumans <kane@cpan.org>. All rights reserved. This library is free software; you may redistribute and/or modify it under the same terms as Perl itself. SEE ALSO
CPANPLUS::Shell::Default, CPANPLUS::Shell::Classic, cpanp perl v5.12.1 2010-04-26 CPANPLUS::Shell(3pm)
All times are GMT -4. The time now is 03:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy