View Single Post
Old 01-30-2003, 12:28 PM  
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
Here you go.

#!/usr/bin/perl
@dir = (`du`);
open (list,">list.txt");
foreach (@dir) { print list; }
close(list);

put in a file and drop it in your starting directory
launch with: perl file, through ssh or whatever :-P.
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote