Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

seed(1) [suse man page]

seed(1) 						      General Commands Manual							   seed(1)

NAME
seed - libseed JavaScript REPL/Interpreter. SYNOPSIS
seed [OPTION...] [SCRIPT] DESCRIPTION
seed acts as a simple read-eval-print loop for libseed's GObject JavaScriptCore bindings, unless the path to a script to interpret is spec- ified. OPTIONS
--help Show these help options. --version Print interpreter version. -e expression Takes the JavaScript expression, checks its syntax, and evaluates it, printing the return value. --seed-debug=DEBUGFLAGS Show debug messages, filtered by the specified debug flags. If one wishes to see all possible debug messages, specify the flag "all" (keep in mind that this will produce a significant amount of output). Otherwise, specify a comma-separated list of: misc, finaliza- tion, initialization, signal, invocation, structs, construction, gtype, importer, module. BUGS Report bugs at http://bugzilla.gnome.org/ in the seed product. HOMEPAGE and CONTACT http://live.gnome.org/Seed AUTHORS
Robert Carr <racarr@svn.gnome.org> Tim Horton <hortont@svn.gnome.org> seed(1)

Check Out this Related Man Page

SRAND(3)								 1								  SRAND(3)

srand - Seed the random number generator

SYNOPSIS
void srand ([int $seed]) DESCRIPTION
Seeds the random number generator with $seed or with a random value if no $seed is given. Note As of PHP 4.2.0, there is no need to seed the random number generator with srand(3) or mt_srand(3) as this is now done automati- cally. PARAMETERS
o $seed - Optional seed value RETURN VALUES
No value is returned. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 4.2.0 | | | | | | | The $seed becomes optional and defaults to a | | | random value if omitted. | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 srand(3) example <?php // seed with microseconds function make_seed() { list($usec, $sec) = explode(' ', microtime()); return (float) $sec + ((float) $usec * 100000); } srand(make_seed()); $randval = rand(); ?> SEE ALSO
rand(3), getrandmax(3), mt_srand(3). PHP Documentation Group SRAND(3)
Man Page

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

SSH and file prng_seed

I need some help... What use is there to the file prng_seed under Solaris? (2 Replies)
Discussion started by: penguin-friend
2 Replies

2. UNIX for Advanced & Expert Users

How to create a prng_seed file?

Hi all, I've just installed egd ssh zlib and ssl on a server: $ uname -a SunOS su214tos 5.8 Generic_108528-11 sun4d sparc SUNW,SPARCserver-1000 When i want to execute the /usr/local/sbin/sshd, i get the following: PRNG is not seeded... How do i seed the PRNG? Thanx Jason (1 Reply)
Discussion started by: penguin-friend
1 Replies

3. UNIX for Advanced & Expert Users

file //.ssh/prng_seed is not a regular file

Hi all... On all of my solaris servers (5.5.1,5.6,5.7,5.8 and one 5.9) i get this error message: sshd: fatal: PRNG seedfile //.ssh/prng_seed is not a regular file... Knowing that i have no way to recompile correctly the sources, how can i fix this problem? I'm using openssh, openssl, and... (3 Replies)
Discussion started by: penguin-friend
3 Replies

4. UNIX for Dummies Questions & Answers

PRNG is not seeded

I am trying to get ssh running on a UnixWare 7.1.1 server. When attempting to invoke /etc/rc2.d/S98opensshd, I get the "PRNG is not seeded" error. I haven't been able to find any complete information on a fix for this so far... so if anyone out there has a clue, I would be most appreciative. ... (1 Reply)
Discussion started by: rm -r *
1 Replies

5. Shell Programming and Scripting

Ubuntu Preseed not found

Hello there! I am not certain that this is the proper place to post this, but I will try anyway. I am trying to install Ubuntu using a preseed on a USB thumb drive, and I am having problems. Hopefully someone here is able to help me. I have a file named 'preseed.cfg' in the root directory... (4 Replies)
Discussion started by: Curtor
4 Replies

6. UNIX for Advanced & Expert Users

Running Script after Preseed Install

Hello there, If you don't want to here the long version, but still want to answer my question, please skip down to THE BOTTOM! You can probably tell what I want to do already from the title, so I'll sum up what I have already done real quick: First off, for those that don't know, a preseed... (1 Reply)
Discussion started by: Curtor
1 Replies

7. Debian

Debian installer or how to preseed

Good afternoon! Could you please clarify me how to use correct Debian's preseed file? I have a kernel version 4.15.0-20-generic (Ubuntu 18.04) and default initrd (both downloaded from official repo) Also I have a little kickstart file and main preseed cfg file Installation start by iPXE... (4 Replies)
Discussion started by: nodorgrom
4 Replies