#!/bin/bash
# PODNAME: cube
# ABSTRACT: quick script to send things to hypnocube rather than piping yourself
# easy way to write to cube rather than echoing to the pipe
CUBE=/tmp/hypnocube
if [ ! -e $CUBE ] ; then
echo "cubepipe does not seem to be running"
exit 1
fi
if [ ! -p $CUBE ] ; then
echo "$CUBE is not a pipe"
exit 1
fi
if [ "$1" != "" ] ; then
echo "$@" > $CUBE
fi
# perl pod may get added so lets exit before thats an issue
exit ;
__END__
=pod
=encoding UTF-8
=head1 NAME
cube - quick script to send things to hypnocube rather than piping yourself
=head1 VERSION
version 1.6
=head1 AUTHOR
Kevin Mulholland <moodfarm@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Kevin Mulholland.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut