diff options
author | Ron Yorston <rmy@pobox.com> | 2021-11-14 09:52:59 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-11-14 09:52:59 +0000 |
commit | 2e8de47ad30b86f376cf2295747634c8140cfca3 (patch) | |
tree | 013290838b7d8d1dbf68d6192c0ce0c5ffec8f46 | |
parent | 3da297a49ccb53b2940454492b3893a493e59614 (diff) | |
download | busybox-w32-2e8de47ad30b86f376cf2295747634c8140cfca3.tar.gz busybox-w32-2e8de47ad30b86f376cf2295747634c8140cfca3.tar.bz2 busybox-w32-2e8de47ad30b86f376cf2295747634c8140cfca3.zip |
win32: add link to LWN article on shebang
-rw-r--r-- | win32/process.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/process.c b/win32/process.c index 812e259f4..fb3c5b369 100644 --- a/win32/process.c +++ b/win32/process.c | |||
@@ -72,7 +72,8 @@ parse_interpreter(const char *cmd, interp_t *interp) | |||
72 | 72 | ||
73 | /* | 73 | /* |
74 | * See http://www.in-ulm.de/~mascheck/various/shebang/ for trivia | 74 | * See http://www.in-ulm.de/~mascheck/various/shebang/ for trivia |
75 | * relating to '#!'. | 75 | * relating to '#!'. See also https://lwn.net/Articles/630727/ |
76 | * for Linux-specific details. | ||
76 | */ | 77 | */ |
77 | if (interp->buf[0] != '#' || interp->buf[1] != '!') | 78 | if (interp->buf[0] != '#' || interp->buf[1] != '!') |
78 | break; | 79 | break; |