Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Removing Directory and Contents with Perl

by ptum (Priest)
on Mar 01, 2007 at 22:31 UTC ( [id://602797]=note: print w/replies, xml ) Need Help??


in reply to Removing Directory and Contents with Perl

Perhaps what you want, for at least some unix variants, is something like this:

#!/usr/local/bin/perl -w use strict; my $deletedir = '/tmp/test1'; my $result = system("rm -rf $deletedir"); print "Result: $result\n";

Replies are listed 'Best First'.
Re^2: Removing Directory and Contents with Perl
by shandor (Monk) on Mar 02, 2007 at 02:35 UTC

    I would put some strict testing around an "rm -rf" command, especially if you're running this script as root/Admin. We recently lost several TB of data because a script didn't set the directory variables correctly and ran "rm -rf /*" (instead of "rm -rf $path_to_home/*") as root.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://602797]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-25 04:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found