How I can to organize my output, showing my results like rows and columns? Example a:
DIR output: C:\Folder\*.*
Field1 Date Time Size
MidInf 2014/11/22 15:23 7664
FewInf 2014/11/22 15:23 548
Empty 2014/11/22 15:09 0
Someinf 2014/11/22 15:23 683
Empty 2014/11/22 15:09 0
Empty 2014/11/22 15:09 0
MidInf 2014/11/22 15:23 7729
FewInf 2014/11/22 15:23 65
Example now is with dir, but I wat to show other type information...
Other example:
C:\user\binder>netstat -nao | find /i "37"
TCP 192.168.97.100:53377 23.7.112.60:443 ESTABLISHED 3260
UDP 0.0.0.0:3702 *:* 1092
UDP 0.0.0.0:3702 *:* 1828
UDP 0.0.0.0:3702 *:* 1828
UDP 0.0.0.0:3702 *:* 1092
UDP 192.168.97.100:137 *:* 4
UDP [::]:3702 *:* 1828
UDP [::]:3702 *:* 1092
UDP [::]:3702 *:* 1092
UDP [::]:3702 *:* 1828
C:\user\binder>
Is possible?
EDIT:
for Windows only CMD or DOS
If you are using unix/linux with bash then the simplest way to output information in columns would be to pipe the information to the bash command 'column'. If for example you had a text file containing a list of things that you wanted to print out your command would be:
I often use 'column' with the grep command as well.
This will print in a nice columnized fashion all filenames containing "foobar" in your current directory.
For more information about the column command type 'man column' into your terminal.