File: exiter.pl

package info (click to toggle)
libipc-system-simple-perl 1.30-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 256 kB
  • sloc: perl: 908; makefile: 4
file content (10 lines) | stat: -rwxr-xr-x 184 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl -w
use strict;
use warnings;

# This program always exits with the value supplied.  Perfect
# for testing.  ;)

my $exit_value = shift(@ARGV) || 0;

exit($exit_value);