Sorry if this is a common question, I wasn't able to find it after looking for a bit.
Is there a way to do bash-like command substitution? e.g.
[C:\some\dir] vim $(dir /B)
would first run `dir /B` on the directory and then feed that resultant string to vim, which would open every file in the directory. Is there a way to do similar things in tcc?
Is there a way to do bash-like command substitution? e.g.
[C:\some\dir] vim $(dir /B)
would first run `dir /B` on the directory and then feed that resultant string to vim, which would open every file in the directory. Is there a way to do similar things in tcc?