Folks, someone sent me this: https://roman01la.github.io/javascript-to-clojurescript/ And it does not support A LOT of JS syntax. Do you know if anyone wrote a better version for it? I'm quite inclined of writing one myself 😄
Does anyone know on windows how to list just file names in a directory, and pipe those names to a file, one file per line.
I've tried via PS
PS> Get-ChildItem -name > tosign.txt
And
PS> Get-ChildItem -name | Out-File tosign.txt
My problem is tosign.txt always has itself in the list of files. I don't want it to include itself. I assume PS is creating the file before listing the files and that's what it includes itself.Got it
Get-ChildItem -name -Exclude tosign.txt | Out-File tosign.txt