Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rain(6) [debian man page]

RAIN(6) 							 BSD Games Manual							   RAIN(6)

NAME
rain -- animated raindrops display SYNOPSIS
rain [-d delay] DESCRIPTION
The output of rain is modeled after the VAX/VMS program of the same name. To obtain the proper effect, either the terminal must be set for 9600 baud or the -d option must be used to specify a delay, in milliseconds, between each update. The default delay is 120. AUTHOR
Eric P. Scott BSD
May 31, 1993 BSD

Check Out this Related Man Page

IMAGICK.SETIMAGEDELAY(3)						 1						  IMAGICK.SETIMAGEDELAY(3)

Imagick::setImageDelay - Sets the image delay

SYNOPSIS
bool Imagick::setImageDelay (int $delay) DESCRIPTION
Sets the image delay. For an animated image this is the amount of time that this frame of the image should be displayed for, before dis- playing the next frame. The delay can be set individually for each frame in an image. PARAMETERS
o $delay - The amount of time expressed in 'ticks' that the image should be displayed for. For animated GIFs there are 100 ticks per sec- ond, so a value of 20 would be 20/100 of a second aka 1/5th of a second. RETURN VALUES
Returns TRUE on success. ERRORS
/EXCEPTIONS Throws ImagickException on error. EXAMPLES
Example #1 Modify animated Gif with Imagick.setImageDelay(3) <?php // Modify an animated Gif so that it's frames are played at a variable speed, // varying between being shown for 50ms down to 0ms, which will cause the frame // to be skipped in most browsers. $imagick = new Imagick(realpath("Test.gif")); $imagick = $imagick->coalesceImages(); $frameCount = 0; foreach ($imagick as $frame) { $imagick->setImageDelay((($frameCount % 11) * 5)); $frameCount++; } $imagick = $imagick->deconstructImages(); $imagick->writeImages("/path/to/save/output.gif", true); ?> PHP Documentation Group IMAGICK.SETIMAGEDELAY(3)
Man Page

11 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX Training

Hello all, I am probably the newest newb in here and would really appreciate some (as much as possible) help on learning UNIX. If anyone is familiar with any non boot camp schools in the NY area, preferrably instructor-led, please refer me to a link or list them in a reply. Also, any information on... (10 Replies)
Discussion started by: syrixx
10 Replies

2. UNIX for Dummies Questions & Answers

training

Hello I need to get proper Unix training please advise from where i have to start and what is the scope. i am already working with citigroup as support analyst. thanks (8 Replies)
Discussion started by: Manzar Qureshi
8 Replies

3. Programming

C Brain Teaser

Dear Gurus, I have encountered a C question, which I thought of sharing with you. This question was asked by one of my technical training staff...Though my training was over I'm still thinking of a solution for this.. Write a C program to do a small task(lets say just simply printing a "Hello... (34 Replies)
Discussion started by: vrk1219
34 Replies

4. Solaris

Setting up a Solaris training

Hi, i'm about to hold a training (Solaris 10) for my colleagues. I've to plan for two days. There is a day for basics and a day (some weeks later) for advanced topics. All of them are regular solaris users (but mostly only installing + patching). What do you guys think are interesting topics... (22 Replies)
Discussion started by: DukeNuke2
22 Replies

5. UNIX for Dummies Questions & Answers

training unix set up for a p.c.

I'm looking for a free unix download(for a p.c. which I think is running xp) to simulate or mirror a unix operating system to teach a friend basic unix skills for an interview. I saw the solaris link, but couldn't really tell if it would work on a p.c. And I don't want to mess with his operating... (9 Replies)
Discussion started by: mmtemp
9 Replies

6. Solaris

Serial Split Brain detected in solaris10

Hello, I have connected storedge d2 to V440 running solaris 10. I had a raid 5 volume created using VXVM software. This morning when I rebooted the system, I get below error, Apr 2 14:21:10 servername vxvm:vxconfigd: V-5-1-9576 Split Brain. da id is 0.1, while dm id is 0.0 for dm myapp-dg01... (52 Replies)
Discussion started by: upengan78
52 Replies

7. What is on Your Mind?

Speculative Shell Feature Brainstorming

Hi - little introductory post for this thread: The discussion started in the "What's your most useful shell?" poll thread and I think the discussion's gone on long enough that I don't want new posts related to that discussion to go there any more. It's a big discussion and it only gets bigger. ... (26 Replies)
Discussion started by: tetsujin
26 Replies

8. UNIX for Dummies Questions & Answers

Solaris for a training: PC vs Sparc

I need a computer to try Solaris. I'm learning with UNIX Academy training DVDs and after spending much time with Linux I want to try and learn on Solaris. I'll have to buy a computer for my training anyway. I found on ebay plenty of inexpensive Sun boxes. Would it be beneficial for learning to have... (26 Replies)
Discussion started by: newlinuxuser1
26 Replies

9. Shell Programming and Scripting

Eliminating space constraint in grep

here in the below code just a space between 'Info' and '(' is showing that the patter doesnt match... echo "CREATE TABLE Info (" | grep -i "CREATE TABLE Info (" | wc | awk -F' ' '{print $1}' 1 echo "CREATE TABLE Info (" | grep -i "CREATE TABLE Info (" | wc | awk -F' ' '{print $1}' 0 ... (9 Replies)
Discussion started by: vivek d r
9 Replies

10. Solaris

Pkg update: No solution was found to satisfy constraints

I have an x86 Solaris box running 11.2 and have run into the following issue when attempting to run a package update. Has anyone else come across this issue and resolved it successfully, or am I waiting on Oracle to release other updated packages? uname -a SunOS <hostname> 5.11 11.2... (13 Replies)
Discussion started by: nova_cyclist
13 Replies

11. UNIX for Dummies Questions & Answers

Grep with time constraints

Hello Friends - I am trying to grep certain messages that have a time slot like this: MyRate=33FC|SystemDEF=445DE|Calc=33W2|Time=15:50:24 I am trying to grep everything after Time=15:50:26 including SystemDEF=E2S and Calc=33W2 into a file called myrate.dat Not able to... (7 Replies)
Discussion started by: DallasT
7 Replies