|
|
|
|
|
by fstrthnscnd
1694 days ago
|
|
> It would be really annoying if we always had to add quotes for string args when we're typing at the terminal With bash (and I suspect with every other popular shells out there), it actually means something different. In your second example, if you don't use quotes, the shell will do the extensions, but if you do, the process will have to do it (and in the case of ls, it cannot). In some case it's good to have the shell taking care of it, but sometimes (eg, when using 'find') it's not. |
|