Rand Stats

Shell::Command

github:tadzik

Shell::Command

Provides cross-platform routines emulating common *NIX shell commands

Build Status

Operating SystemBuild StatusCI Provider
Linux / Mac OS XBuild StatusTravis CI
Windows 7 64-bitBuild statusAppVeyor

Example

use v6;
use Shell::Command;

# Recursive folder copy
cp 't/dir1', 't/dir2', :r;

# Remove a file
rm_f 'to_delete';

# Remove directory
rmdir 't/dupa/foo/bar';

# Make path
mkpath 't/dir2';

# Remove path
rm_rf 't/dir2';

# Find perl6 in executable path
my $perl6_path = which('perl6');

# Concatenate the contents of a file or list of files and print to STDOUT
cat "file1.txt", "file2.txt";

# A cross platfrom syncronous run()
my $command = $*DISTRO.is-win ?? 'binary.exe' !! 'binary';
run-command($binary, 'some', 'parameter');

See Also

Author

Contributors

LICENSE

MIT License