mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 00:59:07 +00:00
8 lines
207 B
Perl
Executable file
8 lines
207 B
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
# small 'fake' script to allow xterm to be found when performing tests
|
|
# on systems that do not have it
|
|
|
|
warn "$_=$ENV{$_}", $/ for ( sort keys %ENV ) if ( $ENV{TEST_VERBOSE} );
|
|
|
|
exit 0
|