This might be a stupid question, but now I'd also like to remove whitespace/trailing inbetween (see also: Remove whitespace/trailing).
For example, I've this command:
fltmc volumes | find ":">>out.log
Which will give me output like:
C: \Device\HarddiskVolume1 NTFS
F: \Device\HarddiskVolume5 FAT
How can I make it be output like this for example?:
C: \Device\HarddiskVolume1 NTFS
F: \Device\HarddiskVolume5 FAT
Thank you..!