- Jul
- 516
- 10
I'm just going to assume this isn't a bug and there's a logical explanation i haven't figured out.
However, I do think it's quite strange that we can echo :u8 to a file and it outputs to console fine, but doing the same thing to the clipboard results in a failure of sorts. Maybe there's something i didn't consider.
I also don't quite get why there is a >:u8 and a |:u8 but not a <:u8 ... again, i'm sure there's a logical reason.
I also double-checked that even if it doesn't display on the screen, maybe it was really the characters? So I put them to a file just to be sure. Nope!
However, I do think it's quite strange that we can echo :u8 to a file and it outputs to console fine, but doing the same thing to the clipboard results in a failure of sorts. Maybe there's something i didn't consider.
I also don't quite get why there is a >:u8 and a |:u8 but not a <:u8 ... again, i'm sure there's a logical reason.
C:\>echo > foo %+ type foo
??
C:\>echo >:u8 foo %+ type foo
C:\>echo > clip: %+ type <clip:
??
C:\>echo >:u8 clip: %+ type <:u8 clip:
TCC: (Sys) The system cannot find the file specified.
"C:\:u8"
C:\>echo >:u8 clip: %+ type <clip:
🔈
I also double-checked that even if it doesn't display on the screen, maybe it was really the characters? So I put them to a file just to be sure. Nope!