diff options
Diffstat (limited to 'move')
-rwxr-xr-x | move/tree/mdk_totem | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/move/tree/mdk_totem b/move/tree/mdk_totem index 76bc43ec5..5224e154f 100755 --- a/move/tree/mdk_totem +++ b/move/tree/mdk_totem @@ -39,12 +39,9 @@ sub remove_simple_daemons { my $in = interactive->vnew; if (my @busy = remove_simple_daemons(busy_pids_and_files())) { - { #- log it - open(my $LOG, '| sudo sh -c "cat > /dev/tty3"'); - print $LOG '*' x 80, "\n"; - print $LOG join("\n", "$_->{exe} ($_->{cmdline}) =>", map { " $_" } @{$_->{files}}) . "\n" foreach @busy; - print $LOG '*' x 80, "\n"; - } + warn '*' x 80, "\n"; + warn join("\n", "$_->{exe} ($_->{cmdline}) =>", map { " $_" } @{$_->{files}}) . "\n" foreach @busy; + warn '*' x 80, "\n"; my @progs = map { my $s = $_->{cmdline}; |