- Aug
- 2,320
- 111
The /32 option for dir works great in TCC34...
Looking at it in view, though, gives different results...
...gives me...
So does...
What works for me is...
Yes, the TCC font is different from the view font...
...while the view font is...
The font difference does not matter, though, since I can get the results that I want using...
Why the difference between view vs. pipeview vs. pee view?
Joe
Code:
E:\Utils>dir w*.exe /32
Volume in drive E is New Volume Serial number is 2d3e:6e62
Directory of E:\Utils\w*.exe
2016-09-09 1:41 14,336 »WasFile.exe
2017-12-25 20:52 7,181,824 websocketd.exe
2003-07-09 15:23 52,736 »winexp.exe
2024-03-22 16:54 8,704 WinVer.exe
2017-10-03 13:44 58,576 »WirelessNetView.exe
2012-06-11 9:56 78,848 »WizApp.exe
2023-02-25 4:00 239,104 »WMIGen.exe
7,634,128 bytes in 7 files and 0 dirs 7,651,328 bytes allocated
1,340,144,517,120 bytes free
Looking at it in view, though, gives different results...
Code:
dir w*.exe /32 | view
...gives me...
So does...
Code:
dir w*.exe /32 | pipeview
What works for me is...
Code:
dir w*.exe /32 | pee view
Yes, the TCC font is different from the view font...
Code:
E:\Utils>which font
font is a plugin command (ConFont)
E:\Utils>font
IBM 3270 16 × 34 (bold)
...while the view font is...
The font difference does not matter, though, since I can get the results that I want using...
Code:
dir w*.exe /32 | pee view
Why the difference between view vs. pipeview vs. pee view?
Joe