summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/eg/van/empty
blob: ee656e68563f8b4ce7161815af3b3ebd46dc9c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/perl

# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/empty,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $

# This script empties a trashcan.

$recursive = shift if $ARGV[0] eq '-r';

@ARGV = '.' if $#ARGV < 0;

chop($pwd = `pwd`);

dir: foreach $dir (@ARGV) {
    unless (chdir $dir) {
	print stderr "Can't find directory $dir: $!\n";
	next dir;
    }
    if ($recursive) {
	do cmd('find . -name .deleted -exec /bin/rm -rf {} ;');
    }
    else {
	if (-d '.deleted') {
	    do cmd('rm -rf .deleted');
	}
	else {
	    if ($dir eq '.' && $pwd =~ m|/\.deleted$|) {
		chdir '..';
		do cmd('rm -rf .deleted');
	    }
	    else {
		print stderr "No trashcan found in directory $dir\n";
	    }
	}
    }
}
continue {
    chdir $pwd;
}

# force direct execution with no shell

sub cmd {
    system split(' ',join(' ',@_));
}

OpenPOWER on IntegriCloud