#!/usr/bin/perl -w # # xpcc.pl - XPC Client # # Copyright (C) 2001 Gregor N. Purdy. # All rights reserved. # # This is free software; you can redistribute it and/or modify it under # the same terms as Perl itself. # use strict; use XPC::Agent; my $agent = XPC::Agent->new(shift @ARGV); package main; printf "localtime() --> %s\n", $agent->localtime(); exit 0; # # End of file. #