Earlier quoted context omitted.
Have you spent any time with PowerShell? It's completely amazing. And I say this as a hard core Linux user since 1996.
I've spent quite a bit of time recently with PowerShell and I have to say that at best, I'm underwhelmed. I can see the potential with PS but there are too many things that are just left out by default. The documentation seems incomplete and very clunky to actually use; it's hard to find what command you want and some docs are just plain wrong. Even using third party docs is frustrating. Honestly, it reminds me of th…
You can append content to a file using >>:
PS C:\Users\rich> "Foo" > 1.txt
PS C:\Users\rich> cat .\1.txt
Foo
PS C:\Users\rich> "Bar" >> 1.txt
PS C:\Users\rich> cat .\1.txt
Foo
Bar