Created
October 22, 2011 13:30
-
-
Save kimmel/1306010 to your computer and use it in GitHub Desktop.
Shell::Command example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use Shell::Command; | |
my $name = 'newfile.pl'; | |
rm_rf '*.tar.gz'; | |
touch $name; | |
mkpath 'cars'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment