diff --git a/toys/pending/crontab.c b/toys/pending/crontab.c index 6c1c65a29..e112a6eef 100644 --- a/toys/pending/crontab.c +++ b/toys/pending/crontab.c @@ -2,7 +2,7 @@ * * Copyright 2014 Ranjan Kumar * - * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html USE_CRONTAB(NEWTOY(crontab, "c:u:elr[!elr]", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_STAYROOT)) diff --git a/toys/pending/dd.c b/toys/pending/dd.c index 8f4e711ef..648274883 100644 --- a/toys/pending/dd.c +++ b/toys/pending/dd.c @@ -3,7 +3,7 @@ * Copyright 2013 Ashwini Kumar * Copyright 2013 Kyungwan Han * - * See http://opengroup.org/onlinepubs/9699919799/utilities/dd.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/dd.html USE_DD(NEWTOY(dd, 0, TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/pending/expr.c b/toys/pending/expr.c index 9e094a75a..97281105d 100644 --- a/toys/pending/expr.c +++ b/toys/pending/expr.c @@ -3,7 +3,7 @@ * Copyright 2016 Google Inc. * Copyright 2013 Daniel Verkamp * - * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/expr.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/expr.html * * The web standard is incomplete (precedence grouping missing), see: * http://permalink.gmane.org/gmane.comp.standards.posix.austin.general/10141 diff --git a/toys/pending/more.c b/toys/pending/more.c index dbd429b40..b9aaeeb0c 100644 --- a/toys/pending/more.c +++ b/toys/pending/more.c @@ -2,7 +2,7 @@ * * Copyright 2013 Bilal Qureshi * - * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/more.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/more.html USE_MORE(NEWTOY(more, 0, TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/pending/sh.c b/toys/pending/sh.c index d6aaaff27..0ad3b8972 100644 --- a/toys/pending/sh.c +++ b/toys/pending/sh.c @@ -6,8 +6,8 @@ * http://man7.org/linux/man-pages/man1/bash.1.html * * The POSIX-2008/SUSv4 shell spec is at: - * http://opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html - * and http://opengroup.org/onlinepubs/9699919799/utilities/sh.html + * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html + * and http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sh.html * * deviations from posix: don't care about $LANG or $LC_ALL diff --git a/toys/posix/basename.c b/toys/posix/basename.c index 35fe6f468..e76e97cf1 100644 --- a/toys/posix/basename.c +++ b/toys/posix/basename.c @@ -2,7 +2,7 @@ * * Copyright 2012 Tryn Mirell * - * See http://opengroup.org/onlinepubs/9699919799/utilities/basename.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/basename.html USE_BASENAME(NEWTOY(basename, "^<1as:", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/cal.c b/toys/posix/cal.c index 33b15a175..29df62531 100644 --- a/toys/posix/cal.c +++ b/toys/posix/cal.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/cal.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cal.html USE_CAL(NEWTOY(cal, ">2h", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/cat.c b/toys/posix/cat.c index 6daba7a26..666a1b030 100644 --- a/toys/posix/cat.c +++ b/toys/posix/cat.c @@ -2,7 +2,7 @@ * * Copyright 2006 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/cat.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cat.html * * And "Cat -v considered harmful" at * http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz diff --git a/toys/posix/chgrp.c b/toys/posix/chgrp.c index 1e56d9738..9fd72bd4c 100644 --- a/toys/posix/chgrp.c +++ b/toys/posix/chgrp.c @@ -2,8 +2,8 @@ * * Copyright 2012 Georgi Chorbadzhiyski * - * See http://opengroup.org/onlinepubs/9699919799/utilities/chown.html - * See http://opengroup.org/onlinepubs/9699919799/utilities/chgrp.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/chown.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/chgrp.html USE_CHGRP(NEWTOY(chgrp, "<2h(no-dereference)PLHRfv[-HLP]", TOYFLAG_BIN)) USE_CHOWN(OLDTOY(chown, chgrp, TOYFLAG_BIN)) diff --git a/toys/posix/chmod.c b/toys/posix/chmod.c index 3645ebc80..0ed496580 100644 --- a/toys/posix/chmod.c +++ b/toys/posix/chmod.c @@ -2,7 +2,7 @@ * * Copyright 2012 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/chmod.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/chmod.html USE_CHMOD(NEWTOY(chmod, "<2?vfR[-vf]", TOYFLAG_BIN)) diff --git a/toys/posix/cksum.c b/toys/posix/cksum.c index 6e5b915cc..28af730c4 100644 --- a/toys/posix/cksum.c +++ b/toys/posix/cksum.c @@ -2,7 +2,7 @@ * * Copyright 2008 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/cksum.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cksum.html USE_CKSUM(NEWTOY(cksum, "HIPLN", TOYFLAG_BIN)) USE_CRC32(NEWTOY(crc32, 0, TOYFLAG_BIN)) diff --git a/toys/posix/cmp.c b/toys/posix/cmp.c index d1c73f1de..f61d55ca6 100644 --- a/toys/posix/cmp.c +++ b/toys/posix/cmp.c @@ -2,7 +2,7 @@ * * Copyright 2012 Timothy Elliott * - * See http://opengroup.org/onlinepubs/9699919799/utilities/cmp.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cmp.html USE_CMP(NEWTOY(cmp, "<1>2ls(silent)(quiet)[!ls]", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_ARGFAIL(2))) diff --git a/toys/posix/comm.c b/toys/posix/comm.c index c5c8f8516..4fdc1e090 100644 --- a/toys/posix/comm.c +++ b/toys/posix/comm.c @@ -2,7 +2,7 @@ * * Copyright 2012 Ilya Kuzmich * - * See http://opengroup.org/onlinepubs/9699919799/utilities/comm.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/comm.html // <# and ># take single digit, so 321 define flags USE_COMM(NEWTOY(comm, "<2>2321", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/cp.c b/toys/posix/cp.c index cd8a7b152..fe8f55c40 100644 --- a/toys/posix/cp.c +++ b/toys/posix/cp.c @@ -1,7 +1,7 @@ /* Copyright 2008 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/cp.html - * And http://opengroup.org/onlinepubs/9699919799/utilities/mv.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cp.html + * And http://pubs.opengroup.org/onlinepubs/9699919799/utilities/mv.html * And http://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic.html#INSTALL * * Posix says "cp -Rf dir file" shouldn't delete file, but our -f does. diff --git a/toys/posix/cut.c b/toys/posix/cut.c index 61b2b4092..35e92b2ec 100644 --- a/toys/posix/cut.c +++ b/toys/posix/cut.c @@ -2,7 +2,7 @@ * * Copyright 2016 Rob Landley * - * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cut.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/cut.html * * Deviations from posix: added -DF. We can only accept 512 selections, and * "-" counts as start to end. Using spaces to separate a comma-separated list diff --git a/toys/posix/date.c b/toys/posix/date.c index f34c347f2..98528d213 100644 --- a/toys/posix/date.c +++ b/toys/posix/date.c @@ -2,7 +2,7 @@ * * Copyright 2012 Andre Renaud * - * See http://opengroup.org/onlinepubs/9699919799/utilities/date.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/date.html * * Note: setting a 2 year date is 50 years back/forward from today, * not posix's hardwired magic dates. diff --git a/toys/posix/df.c b/toys/posix/df.c index 53d99f562..3e32f2e8d 100644 --- a/toys/posix/df.c +++ b/toys/posix/df.c @@ -2,7 +2,7 @@ * * Copyright 2006 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/df.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/df.html USE_DF(NEWTOY(df, "HPkhit*a[-HPkh]", TOYFLAG_SBIN)) diff --git a/toys/posix/dirname.c b/toys/posix/dirname.c index fa84af27a..07f313368 100644 --- a/toys/posix/dirname.c +++ b/toys/posix/dirname.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/dirname.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/dirname.html USE_DIRNAME(NEWTOY(dirname, "<1", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/du.c b/toys/posix/du.c index 861186763..ab7cea3c4 100644 --- a/toys/posix/du.c +++ b/toys/posix/du.c @@ -2,7 +2,7 @@ * * Copyright 2012 Ashwini Kumar * - * See http://opengroup.org/onlinepubs/9699919799/utilities/du.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/du.html * * TODO: cleanup (should seen_inode be lib?) * 32 bit du -b maxes out at 4 gigs (instead of 2 terabytes via *512 trick) diff --git a/toys/posix/echo.c b/toys/posix/echo.c index b546e94b0..1cf89390d 100644 --- a/toys/posix/echo.c +++ b/toys/posix/echo.c @@ -2,7 +2,7 @@ * * Copyright 2007 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/echo.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html * * Deviations from posix: we parse command line options, as Linux has * consistently done since 1992. Posix defaults -e to on, we require -e. diff --git a/toys/posix/env.c b/toys/posix/env.c index 7b944f07c..cd7f71e97 100644 --- a/toys/posix/env.c +++ b/toys/posix/env.c @@ -2,7 +2,7 @@ * * Copyright 2012 Tryn Mirell * - * http://opengroup.org/onlinepubs/9699919799/utilities/env.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/env.html * * Deviations from posix: "-" argument and -0 diff --git a/toys/posix/false.c b/toys/posix/false.c index e93379964..9ff2f81a5 100644 --- a/toys/posix/false.c +++ b/toys/posix/false.c @@ -2,7 +2,7 @@ * * Copyright 2007 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/false.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/false.html USE_FALSE(NEWTOY(false, NULL, TOYFLAG_BIN|TOYFLAG_NOHELP|TOYFLAG_MAYFORK)) diff --git a/toys/posix/find.c b/toys/posix/find.c index ff127b91c..b6849ee12 100644 --- a/toys/posix/find.c +++ b/toys/posix/find.c @@ -2,7 +2,7 @@ * * Copyright 2014 Rob Landley * - * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/find.c + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/find.html * * Our "unspecified" behavior for no paths is to use "." * Parentheses can only stack 4096 deep diff --git a/toys/posix/getconf.c b/toys/posix/getconf.c index c5e05489d..72590f6d6 100644 --- a/toys/posix/getconf.c +++ b/toys/posix/getconf.c @@ -2,7 +2,7 @@ * * Copyright 2017 Rob Landley * - * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getconf.c + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getconf.html * * Deviations from posix: no -v because nothing says what it should DO. * Added -l, what symbols should be included is a bit unclear. diff --git a/toys/posix/head.c b/toys/posix/head.c index d5c0700c7..490ccb566 100644 --- a/toys/posix/head.c +++ b/toys/posix/head.c @@ -2,7 +2,7 @@ * * Copyright 2006 Timothy Elliott * - * See http://opengroup.org/onlinepubs/9699919799/utilities/head.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/head.html * * Deviations from posix: -c diff --git a/toys/posix/id.c b/toys/posix/id.c index 6f71891be..10fbaf0ff 100644 --- a/toys/posix/id.c +++ b/toys/posix/id.c @@ -4,7 +4,7 @@ * * by Tim Bird * - * See http://opengroup.org/onlinepubs/9699919799/utilities/id.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/id.html USE_ID(NEWTOY(id, ">1"USE_ID_Z("Z")"nGgru[!"USE_ID_Z("Z")"Ggu]", TOYFLAG_USR|TOYFLAG_BIN)) USE_GROUPS(NEWTOY(groups, NULL, TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/kill.c b/toys/posix/kill.c index 276765932..287af2305 100644 --- a/toys/posix/kill.c +++ b/toys/posix/kill.c @@ -2,7 +2,7 @@ * * Copyright 2012 Daniel Walter * - * See http://opengroup.org/onlinepubs/9699919799/utilities/kill.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/kill.html * * killall5.c - Send signal to all processes outside current session. * diff --git a/toys/posix/link.c b/toys/posix/link.c index 38d2cf058..b455527f5 100644 --- a/toys/posix/link.c +++ b/toys/posix/link.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/link.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/link.html USE_LINK(NEWTOY(link, "<2>2", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/ln.c b/toys/posix/ln.c index 3cd5c7b8b..553517d7a 100644 --- a/toys/posix/ln.c +++ b/toys/posix/ln.c @@ -2,7 +2,7 @@ * * Copyright 2012 Andre Renaud * - * See http://opengroup.org/onlinepubs/9699919799/utilities/ln.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ln.html USE_LN(NEWTOY(ln, "<1rt:Tvnfs", TOYFLAG_BIN)) diff --git a/toys/posix/ls.c b/toys/posix/ls.c index d9cd90bd7..892775012 100644 --- a/toys/posix/ls.c +++ b/toys/posix/ls.c @@ -3,7 +3,7 @@ * Copyright 2012 Andre Renaud * Copyright 2012 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/ls.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ls.html * * Deviations from posix: * add -b (and default to it instead of -q for an unambiguous representation diff --git a/toys/posix/mkdir.c b/toys/posix/mkdir.c index 932635a66..9106f358b 100644 --- a/toys/posix/mkdir.c +++ b/toys/posix/mkdir.c @@ -2,7 +2,7 @@ * * Copyright 2012 Georgi Chorbadzhiyski * - * See http://opengroup.org/onlinepubs/9699919799/utilities/mkdir.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/mkdir.html USE_MKDIR(NEWTOY(mkdir, "<1"USE_MKDIR_Z("Z:")"vp(parent)(parents)m:", TOYFLAG_BIN|TOYFLAG_UMASK)) diff --git a/toys/posix/mkfifo.c b/toys/posix/mkfifo.c index 8639ebd87..8cf6e9e57 100644 --- a/toys/posix/mkfifo.c +++ b/toys/posix/mkfifo.c @@ -2,7 +2,7 @@ * * Copyright 2012 Georgi Chorbadzhiyski * - * See http://opengroup.org/onlinepubs/9699919799/utilities/mkfifo.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/mkfifo.html USE_MKFIFO(NEWTOY(mkfifo, "<1"USE_MKFIFO_Z("Z:")"m:", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/nice.c b/toys/posix/nice.c index 1803e611e..f2bd212e7 100644 --- a/toys/posix/nice.c +++ b/toys/posix/nice.c @@ -2,7 +2,7 @@ * * Copyright 2010 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/nice.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/nice.html USE_NICE(NEWTOY(nice, "^<1n#", TOYFLAG_BIN)) diff --git a/toys/posix/nohup.c b/toys/posix/nohup.c index 90d374ef2..91a198dad 100644 --- a/toys/posix/nohup.c +++ b/toys/posix/nohup.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/nohup.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/nohup.html USE_NOHUP(NEWTOY(nohup, "<1^", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_ARGFAIL(125))) diff --git a/toys/posix/od.c b/toys/posix/od.c index f0edcd766..fa91d9fbd 100644 --- a/toys/posix/od.c +++ b/toys/posix/od.c @@ -3,7 +3,7 @@ * Copyright 2012 Andre Renaud * Copyright 2012 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/od.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/od.html USE_OD(NEWTOY(od, "j#vw#<1=16N#xsodcbA:t*", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/paste.c b/toys/posix/paste.c index 7d9ba9470..42be86a2d 100644 --- a/toys/posix/paste.c +++ b/toys/posix/paste.c @@ -2,7 +2,7 @@ * * Copyright 2012 Felix Janda * - * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/paste.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/paste.html * * Deviations from posix: the FILE argument isn't mandatory, none == '-' diff --git a/toys/posix/patch.c b/toys/posix/patch.c index e0f13dd78..db9caafc3 100644 --- a/toys/posix/patch.c +++ b/toys/posix/patch.c @@ -2,7 +2,7 @@ * * Copyright 2007 Rob Landley * - * see http://opengroup.org/onlinepubs/9699919799/utilities/patch.html + * see http://pubs.opengroup.org/onlinepubs/9699919799/utilities/patch.html * (But only does -u, because who still cares about "ed"?) * * TODO: diff --git a/toys/posix/pwd.c b/toys/posix/pwd.c index c7dc78f7b..2a5a096f1 100644 --- a/toys/posix/pwd.c +++ b/toys/posix/pwd.c @@ -2,7 +2,7 @@ * * Copyright 2006 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/pwd.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pwd.html USE_PWD(NEWTOY(pwd, ">0LP[-LP]", TOYFLAG_BIN|TOYFLAG_MAYFORK)) diff --git a/toys/posix/rmdir.c b/toys/posix/rmdir.c index c25fd839e..a58ae68ce 100644 --- a/toys/posix/rmdir.c +++ b/toys/posix/rmdir.c @@ -2,7 +2,7 @@ * * Copyright 2008 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/rmdir.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/rmdir.html USE_RMDIR(NEWTOY(rmdir, "<1(ignore-fail-on-non-empty)p(parents)", TOYFLAG_BIN)) diff --git a/toys/posix/sleep.c b/toys/posix/sleep.c index 846df80ce..95f71179e 100644 --- a/toys/posix/sleep.c +++ b/toys/posix/sleep.c @@ -3,7 +3,7 @@ * Copyright 2007 Rob Landley * Copyright 2012 Georgi Chorbadzhiyski * - * See http://opengroup.org/onlinepubs/9699919799/utilities/sleep.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sleep.html USE_SLEEP(NEWTOY(sleep, "<1", TOYFLAG_BIN)) diff --git a/toys/posix/tail.c b/toys/posix/tail.c index 89ec70e8a..759d9cf4e 100644 --- a/toys/posix/tail.c +++ b/toys/posix/tail.c @@ -2,7 +2,7 @@ * * Copyright 2012 Timothy Elliott * - * See http://opengroup.org/onlinepubs/9699919799/utilities/tail.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/tail.html * * Deviations from posix: -f waits for pipe/fifo on stdin (nonblock?). diff --git a/toys/posix/tee.c b/toys/posix/tee.c index 43529426e..a42d06484 100644 --- a/toys/posix/tee.c +++ b/toys/posix/tee.c @@ -2,7 +2,7 @@ * * Copyright 2008 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/tee.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/tee.html USE_TEE(NEWTOY(tee, "ia", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/true.c b/toys/posix/true.c index 8e56269f7..944951ce4 100644 --- a/toys/posix/true.c +++ b/toys/posix/true.c @@ -2,7 +2,7 @@ * * Copyright 2007 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/true.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/true.html USE_TRUE(NEWTOY(true, NULL, TOYFLAG_BIN|TOYFLAG_NOHELP|TOYFLAG_MAYFORK)) USE_TRUE(OLDTOY(:, true, TOYFLAG_NOFORK|TOYFLAG_NOHELP)) diff --git a/toys/posix/tty.c b/toys/posix/tty.c index 9a833d5e3..7ecc5739d 100644 --- a/toys/posix/tty.c +++ b/toys/posix/tty.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/tty.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/tty.html USE_TTY(NEWTOY(tty, "s", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/uname.c b/toys/posix/uname.c index d93fc7a32..703a6c717 100644 --- a/toys/posix/uname.c +++ b/toys/posix/uname.c @@ -2,7 +2,7 @@ * * Copyright 2008 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/uname.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/uname.html USE_UNAME(NEWTOY(uname, "oamvrns[+os]", TOYFLAG_BIN)) USE_ARCH(NEWTOY(arch, 0, TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/uniq.c b/toys/posix/uniq.c index 3091af72c..7e977a260 100644 --- a/toys/posix/uniq.c +++ b/toys/posix/uniq.c @@ -2,7 +2,7 @@ * * Copyright 2012 Georgi Chorbadzhiyski * - * See http://opengroup.org/onlinepubs/9699919799/utilities/uniq.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/uniq.html USE_UNIQ(NEWTOY(uniq, "f#s#w#zicdu", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/unlink.c b/toys/posix/unlink.c index 017ba9d64..eac03e15f 100644 --- a/toys/posix/unlink.c +++ b/toys/posix/unlink.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/unlink.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/unlink.html USE_UNLINK(NEWTOY(unlink, "<1>1", TOYFLAG_USR|TOYFLAG_BIN)) diff --git a/toys/posix/wc.c b/toys/posix/wc.c index 910e46902..6dbdf44a1 100644 --- a/toys/posix/wc.c +++ b/toys/posix/wc.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/wc.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/wc.html USE_WC(NEWTOY(wc, "mcwl", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_LOCALE)) diff --git a/toys/posix/who.c b/toys/posix/who.c index 2515af388..ced63b302 100644 --- a/toys/posix/who.c +++ b/toys/posix/who.c @@ -4,7 +4,7 @@ * * by Luis Felipe Strano Moraes * - * See http://opengroup.org/onlinepubs/9699919799/utilities/who.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/who.html * * Posix says to support many options (-abdHlmpqrstTu) but this * isn't aimed at minicomputers with modem pools. diff --git a/toys/posix/xargs.c b/toys/posix/xargs.c index cc3ee3de8..429615cae 100644 --- a/toys/posix/xargs.c +++ b/toys/posix/xargs.c @@ -2,7 +2,7 @@ * * Copyright 2011 Rob Landley * - * See http://opengroup.org/onlinepubs/9699919799/utilities/xargs.html + * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/xargs.html * * TODO: Rich's whitespace objection, env size isn't fixed anymore. * TODO: -I Insert mode