summaryrefslogtreecommitdiff
path: root/eg/van/unvanish
blob: 4a83c812329f6fed7fa1b4834758d5c7d6957c3b (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/perl

# $Header: unvanish,v 2.0 88/06/05 00:17:30 root Exp $

sub it {
    if ($olddir ne '.') {
	chop($pwd = `pwd`) if $pwd eq '';
	(chdir $olddir) || die "Directory $olddir is not accesible";
    }
    unless ($olddir eq '.deleted') {
	if (-d '.deleted') {
	    chdir '.deleted' || die "Directory .deleted is not accesible";
	}
	else {
	    chop($pwd = `pwd`) if $pwd eq '';
	    die "Directory .deleted does not exist" unless $pwd =~ /\.deleted$/;
	}
    }
    print `mv $startfiles$filelist..$force`;
    if ($olddir ne '.') {
	(chdir $pwd) || die "Can't get back to original directory: $pwd";
    }
}

if ($#ARGV < 0) {
    open(lastcmd,'.deleted/.lastcmd') || 
	open(lastcmd,'.lastcmd') || 
	    die "No previous vanish in this dir";
    $ARGV = <lastcmd>;
    close(lastcmd);
    @ARGV = split(/[\n ]+/,$ARGV);
}

while ($ARGV[0] =~ /^-/) {
    $_ = shift;
    /^-f/ && ($force = ' >/dev/null 2>&1');
    /^-i/ && ($interactive = 1);
    if (/^-+$/) {
	$startfiles = '- ';
	last;
    }
}

while ($file = shift) {
    if ($file =~ s|^(.*)/||) {
	$dir = $1;
    }
    else {
	$dir = '.';
    }

    if ($dir ne $olddir) {
	do it() if $olddir;
	$olddir = $dir;
    }

    if ($interactive) {
	print "unvanish: restore $dir/$file? ";
	next unless <stdin> =~ /^y/i;
    }

    $filelist .= $file; $filelist .= ' ';

}

do it() if $olddir;