summaryrefslogtreecommitdiffstats
path: root/move/tools/busy-files
blob: 476a2dc677169b9950fe86ba61c6b9c4d4142990 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

use MDK::Common;

print "$_\n" foreach uniq (map {
    grep {
	$_ && !m!^(/proc/|/dev/|pipe:|socket:)!;
    } map { readlink($_) } "/proc/$_/exe", glob_("/proc/$_/fd/*");
} grep { $_ ne $$ && /^(\d+)$/ } all('/proc'));