Why aren’t new terminals that use another language? It seems so antiquated getting errors for not writing the functions in the correct order among other things.
Why aren’t new terminals that use another language? It seems so antiquated getting errors for not writing the functions in the correct order among other things.
As a developer, I really love bash. I can run commands like “ls -l {1…3}_foo” which would list me 1_foo, 2_foo and 3_foo but not 4_foo. This works with almost any command.
Or running subcommands in commands. OK, this is also possible in other
terminalsshells like fish.While it possible, the syntax is different. For sub commands Bash uses
$()
while Fish only uses()
. Also. The double bang does not exist in fish. I don’t know why and don’t know of an alternative in fish.