jzawodn (owner)

Revisions

gist: 27454 Download_button fork
public
Description:
sample code used with wait.sh
Public Clone URL: git://gist.github.com/27454.git
Embed All Files: show embed
sleeper #
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl -w
 
use strict;
 
my $time = $ARGV[0] || 1;
my $exit = $ARGV[1] || 0;
 
sleep $time;
exit $exit;