|
|
|
|
|
by chasil
274 days ago
|
|
Nope nope nope. You can see this in a script by defining: alias p=printf
Then try to use it with bash. If bash is running as #!/bin/sh, then it will work, because bash is forced into POSIX mode.However, if the script is running as #!/bin/bash, then you will be in the '80s behavior, and it will fail. Try it. |
|