-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
` is deprecated #273
` is deprecated #273
Conversation
` is deprecated (ref: https://wiki.bash-hackers.org/scripting/obsolete). I replaced them with $().
I replaced them with $(nproc) but accidentally put in a space (which does not break the code but changes the layout/stile) so I removed that one right now.
My shell program removed this a long time ago. |
Note that it just is not recommended to use but it will stay there. No plans for removing it. |
|
Okay, well then, I will close it. |
@MilesBHuff: we had actually already pulled this change into our code base, and it is now included in the 515.57 release. Do you have an example shell that doesn't honor the |
I thought this is POSIX-compliant https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_03 |
@arch-user-france1: note that we already applied this change to our tree, and it is present in 515.57. I don't think there is anything else to be done in this pull request unless someone can point to a shell that doesn't support the I'm going to go ahead and re-close this. Let me know if I've misunderstood. |
The original Bourne shell. |
Interesting! I stand corrected, then: I guess it is POSIX-compliant, even though some older shells don't support it. I apologize for the misinformation. |
It's been deprecated for years if not a decade, it's not gonna get removed now or ever. I wouldn't say this merge request is useless but there's a scent of it. |
` is deprecated (ref: https://wiki.bash-hackers.org/scripting/obsolete and the script called shellcheck). I replaced them with $().