DIR2ROWS
# # This AWK script parses the output of the Windows "DIR *.* /s" command
# and puts in columnar format with column titles # BEGIN { record=" "; # Start output record at 2 spaces for (i = 1; i <= 7; ++i) {record=record record;} # Expand output record to 256 spaces record=repl(record,1,14,"Date"); # Date goes starts at column 1 record=repl(record,12,26,"Size"); # File size starts at column 12 record=repl(record,28,87,"Filename"); # File name starts in column 28 record=repl(record,89,148,"Fullpath"); # Full path starts in column 89 print record; # Print the header line } function repl(s,f,t,v) # Custom function to add data to the output record { return substr(s,1,f-1) sprintf("%-*s", t-f+1, v) substr(s,t+1) } { if ( substr($0,2,9) == &q…
# and puts in columnar format with column titles # BEGIN { record=" "; # Start output record at 2 spaces for (i = 1; i <= 7; ++i) {record=record record;} # Expand output record to 256 spaces record=repl(record,1,14,"Date"); # Date goes starts at column 1 record=repl(record,12,26,"Size"); # File size starts at column 12 record=repl(record,28,87,"Filename"); # File name starts in column 28 record=repl(record,89,148,"Fullpath"); # Full path starts in column 89 print record; # Print the header line } function repl(s,f,t,v) # Custom function to add data to the output record { return substr(s,1,f-1) sprintf("%-*s", t-f+1, v) substr(s,t+1) } { if ( substr($0,2,9) == &q…