From bf5b765cbab8f96ca8448dc561efe2386e396cbd Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 21 Aug 2023 12:23:18 +0200 Subject: [PATCH] Remove the author copyright notices (#5184) * Remove the author copyright notices Rational: * not maintained * does not reflect reality * don't provide any value (the info can be found in the git log) * we don't have rules to update them (ex: should you update it after one line, two lines, etc) Co-authored-by: Daniel Hofstetter --- src/bin/coreutils.rs | 2 -- src/uu/arch/src/arch.rs | 3 --- src/uu/base32/src/base32.rs | 2 -- src/uu/base32/src/base_common.rs | 4 ---- src/uu/base64/src/base64.rs | 3 --- src/uu/basename/src/basename.rs | 2 -- src/uu/basenc/src/basenc.rs | 3 --- src/uu/cat/src/cat.rs | 5 ----- src/uu/chgrp/src/chgrp.rs | 2 -- src/uu/chmod/src/chmod.rs | 2 -- src/uu/chown/src/chown.rs | 2 -- src/uu/chroot/src/chroot.rs | 3 --- src/uu/cksum/src/cksum.rs | 2 -- src/uu/comm/src/comm.rs | 2 -- src/uu/cp/src/cp.rs | 3 --- src/uu/cut/src/cut.rs | 2 -- src/uu/cut/src/searcher.rs | 2 -- src/uu/date/src/date.rs | 3 --- src/uu/dd/src/conversion_tables.rs | 2 -- src/uu/dd/src/datastructures.rs | 2 -- src/uu/dd/src/dd.rs | 2 -- src/uu/dd/src/parseargs.rs | 2 -- src/uu/df/src/df.rs | 3 --- src/uu/dircolors/src/dircolors.rs | 3 --- src/uu/dirname/src/dirname.rs | 2 -- src/uu/echo/src/echo.rs | 3 --- src/uu/env/src/env.rs | 3 --- src/uu/expand/src/expand.rs | 3 --- src/uu/groups/src/groups.rs | 3 --- src/uu/id/src/id.rs | 3 --- src/uu/ls/src/ls.rs | 2 -- src/uu/mknod/src/mknod.rs | 2 -- src/uu/mktemp/src/mktemp.rs | 3 --- src/uu/mv/src/mv.rs | 3 --- src/uu/pinky/src/pinky.rs | 2 -- src/uu/stat/src/stat.rs | 2 -- src/uu/test/src/parser.rs | 2 -- src/uu/test/src/test.rs | 3 --- src/uu/touch/src/touch.rs | 3 --- src/uu/uname/src/uname.rs | 3 --- src/uu/who/src/who.rs | 2 -- src/uucore/src/lib/features/encoding.rs | 2 -- src/uucore/src/lib/features/entries.rs | 2 -- src/uucore/src/lib/features/fs.rs | 3 --- src/uucore/src/lib/features/fsext.rs | 4 ---- src/uucore/src/lib/features/mode.rs | 2 -- src/uucore/src/lib/features/process.rs | 3 --- src/uucore/src/lib/features/signals.rs | 2 -- src/uucore/src/lib/features/sum.rs | 2 -- src/uucore/src/lib/features/utmpx.rs | 2 -- src/uucore/src/lib/features/wide.rs | 2 -- src/uucore/src/lib/macros.rs | 2 -- src/uucore/src/lib/mods/ranges.rs | 2 -- src/uucore/src/lib/mods/update_control.rs | 2 -- src/uucore/src/lib/parser/parse_time.rs | 2 -- tests/by-util/test_base32.rs | 2 -- tests/by-util/test_factor.rs | 2 -- tests/by-util/test_test.rs | 3 --- 58 files changed, 144 deletions(-) diff --git a/src/bin/coreutils.rs b/src/bin/coreutils.rs index d6487dc49..fc2cd16ad 100644 --- a/src/bin/coreutils.rs +++ b/src/bin/coreutils.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Michael Gehring -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/arch/src/arch.rs b/src/uu/arch/src/arch.rs index 96eba1ef9..0d71a8183 100644 --- a/src/uu/arch/src/arch.rs +++ b/src/uu/arch/src/arch.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Smigle00 -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/base32/src/base32.rs b/src/uu/base32/src/base32.rs index 740e2d70b..2ef63fbc0 100644 --- a/src/uu/base32/src/base32.rs +++ b/src/uu/base32/src/base32.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/base32/src/base_common.rs b/src/uu/base32/src/base_common.rs index 78698e8b9..ba2ef9229 100644 --- a/src/uu/base32/src/base_common.rs +++ b/src/uu/base32/src/base_common.rs @@ -1,9 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jordy Dickinson -// (c) Jian Zeng -// (c) Alex Lyon -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/base64/src/base64.rs b/src/uu/base64/src/base64.rs index e502482e3..4e4a3c293 100644 --- a/src/uu/base64/src/base64.rs +++ b/src/uu/base64/src/base64.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jordy Dickinson -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/basename/src/basename.rs b/src/uu/basename/src/basename.rs index 3fe594c3b..6c9baca6f 100644 --- a/src/uu/basename/src/basename.rs +++ b/src/uu/basename/src/basename.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jimmy Lu -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/basenc/src/basenc.rs b/src/uu/basenc/src/basenc.rs index 3ec8cede0..0ee8a816b 100644 --- a/src/uu/basenc/src/basenc.rs +++ b/src/uu/basenc/src/basenc.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jordy Dickinson -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/cat/src/cat.rs b/src/uu/cat/src/cat.rs index 2c4117a32..cd7f77fb5 100644 --- a/src/uu/cat/src/cat.rs +++ b/src/uu/cat/src/cat.rs @@ -1,10 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jordi Boggiano -// (c) Evgeniy Klyuchikov -// (c) Joshua S. Miller -// (c) Árni Dagur -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/chgrp/src/chgrp.rs b/src/uu/chgrp/src/chgrp.rs index bd01e132b..fba2cef16 100644 --- a/src/uu/chgrp/src/chgrp.rs +++ b/src/uu/chgrp/src/chgrp.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/chmod/src/chmod.rs b/src/uu/chmod/src/chmod.rs index a79886037..07fe9bdf9 100644 --- a/src/uu/chmod/src/chmod.rs +++ b/src/uu/chmod/src/chmod.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Alex Lyon -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/chown/src/chown.rs b/src/uu/chown/src/chown.rs index 67e71b815..8e97d5652 100644 --- a/src/uu/chown/src/chown.rs +++ b/src/uu/chown/src/chown.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/chroot/src/chroot.rs b/src/uu/chroot/src/chroot.rs index 2d1c3703e..6366775c3 100644 --- a/src/uu/chroot/src/chroot.rs +++ b/src/uu/chroot/src/chroot.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Vsevolod Velichko -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/cksum/src/cksum.rs b/src/uu/cksum/src/cksum.rs index a46f69302..83d48ec1a 100644 --- a/src/uu/cksum/src/cksum.rs +++ b/src/uu/cksum/src/cksum.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Michael Gehring -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/comm/src/comm.rs b/src/uu/comm/src/comm.rs index b88087389..1bb0020d5 100644 --- a/src/uu/comm/src/comm.rs +++ b/src/uu/comm/src/comm.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Michael Gehring -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/cp/src/cp.rs b/src/uu/cp/src/cp.rs index e0a40d56e..ce16357c6 100644 --- a/src/uu/cp/src/cp.rs +++ b/src/uu/cp/src/cp.rs @@ -3,9 +3,6 @@ // This file is part of the uutils coreutils package. // -// (c) Jordy Dickinson -// (c) Joshua S. Miller -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/cut/src/cut.rs b/src/uu/cut/src/cut.rs index 33dd3850d..891281753 100644 --- a/src/uu/cut/src/cut.rs +++ b/src/uu/cut/src/cut.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Rolf Morel -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/cut/src/searcher.rs b/src/uu/cut/src/searcher.rs index 95d85c020..21424790e 100644 --- a/src/uu/cut/src/searcher.rs +++ b/src/uu/cut/src/searcher.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Rolf Morel -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/date/src/date.rs b/src/uu/date/src/date.rs index 7ec28e491..745fd5423 100644 --- a/src/uu/date/src/date.rs +++ b/src/uu/date/src/date.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Anthony Deschamps -// (c) Sylvestre Ledru -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/dd/src/conversion_tables.rs b/src/uu/dd/src/conversion_tables.rs index aca2ef9bc..bdf6398ac 100644 --- a/src/uu/dd/src/conversion_tables.rs +++ b/src/uu/dd/src/conversion_tables.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Tyler Steele -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/dd/src/datastructures.rs b/src/uu/dd/src/datastructures.rs index 6830df63e..c0da8c67c 100644 --- a/src/uu/dd/src/datastructures.rs +++ b/src/uu/dd/src/datastructures.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Tyler Steele -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. // spell-checker:ignore ctable, outfile, iseek, oseek diff --git a/src/uu/dd/src/dd.rs b/src/uu/dd/src/dd.rs index 4e1287939..4ac2aa780 100644 --- a/src/uu/dd/src/dd.rs +++ b/src/uu/dd/src/dd.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Tyler Steele -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/dd/src/parseargs.rs b/src/uu/dd/src/parseargs.rs index 20a8da1ee..bccf98f82 100644 --- a/src/uu/dd/src/parseargs.rs +++ b/src/uu/dd/src/parseargs.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Tyler Steele -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. // spell-checker:ignore ctty, ctable, iseek, oseek, iconvflags, oconvflags parseargs outfile oconv diff --git a/src/uu/df/src/df.rs b/src/uu/df/src/df.rs index ef1584323..9a3eeac65 100644 --- a/src/uu/df/src/df.rs +++ b/src/uu/df/src/df.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Fangxu Hu -// (c) Sylvestre Ledru -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. // spell-checker:ignore itotal iused iavail ipcent pcent tmpfs squashfs lofs diff --git a/src/uu/dircolors/src/dircolors.rs b/src/uu/dircolors/src/dircolors.rs index 19c3f7e31..4961cccf5 100644 --- a/src/uu/dircolors/src/dircolors.rs +++ b/src/uu/dircolors/src/dircolors.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// (c) Mitchell Mebane -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/dirname/src/dirname.rs b/src/uu/dirname/src/dirname.rs index 4d9c09cc3..9a56e9f5b 100644 --- a/src/uu/dirname/src/dirname.rs +++ b/src/uu/dirname/src/dirname.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Derek Chiang -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/echo/src/echo.rs b/src/uu/echo/src/echo.rs index 659dc836c..cd9467714 100644 --- a/src/uu/echo/src/echo.rs +++ b/src/uu/echo/src/echo.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Derek Chiang -// (c) Christopher Brown -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/env/src/env.rs b/src/uu/env/src/env.rs index 08704f364..e031e39e3 100644 --- a/src/uu/env/src/env.rs +++ b/src/uu/env/src/env.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jordi Boggiano -// (c) Thomas Queiroz -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/expand/src/expand.rs b/src/uu/expand/src/expand.rs index 98b292771..fb73ce4b5 100644 --- a/src/uu/expand/src/expand.rs +++ b/src/uu/expand/src/expand.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Virgile Andreani -// (c) kwantam -// * 2015-04-28 ~ updated to work with both UTF-8 and non-UTF-8 encodings // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/groups/src/groups.rs b/src/uu/groups/src/groups.rs index dd1cd9b04..0f0dfce80 100644 --- a/src/uu/groups/src/groups.rs +++ b/src/uu/groups/src/groups.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Alan Andrade -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. // diff --git a/src/uu/id/src/id.rs b/src/uu/id/src/id.rs index 9f4849f90..724ea8d8b 100644 --- a/src/uu/id/src/id.rs +++ b/src/uu/id/src/id.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Alan Andrade -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/ls/src/ls.rs b/src/uu/ls/src/ls.rs index 34d3b76f2..792768153 100644 --- a/src/uu/ls/src/ls.rs +++ b/src/uu/ls/src/ls.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jeremiah Peschka -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/mknod/src/mknod.rs b/src/uu/mknod/src/mknod.rs index ad7618cc8..0d4709914 100644 --- a/src/uu/mknod/src/mknod.rs +++ b/src/uu/mknod/src/mknod.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/mktemp/src/mktemp.rs b/src/uu/mktemp/src/mktemp.rs index 9c0860d92..f99136810 100644 --- a/src/uu/mktemp/src/mktemp.rs +++ b/src/uu/mktemp/src/mktemp.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Sunrin SHIMURA -// Collaborator: Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/mv/src/mv.rs b/src/uu/mv/src/mv.rs index 03d3881b1..3aacab300 100644 --- a/src/uu/mv/src/mv.rs +++ b/src/uu/mv/src/mv.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Orvar Segerström -// (c) Sokovikov Evgeniy -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/pinky/src/pinky.rs b/src/uu/pinky/src/pinky.rs index 172a9e138..8ac8f6c84 100644 --- a/src/uu/pinky/src/pinky.rs +++ b/src/uu/pinky/src/pinky.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/stat/src/stat.rs b/src/uu/stat/src/stat.rs index 9ffa064b8..b3c9dc513 100644 --- a/src/uu/stat/src/stat.rs +++ b/src/uu/stat/src/stat.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/test/src/parser.rs b/src/uu/test/src/parser.rs index db90098a1..2b847fa15 100644 --- a/src/uu/test/src/parser.rs +++ b/src/uu/test/src/parser.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Daniel Rocco -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/test/src/test.rs b/src/uu/test/src/test.rs index b0a8fc613..7e778f9b5 100644 --- a/src/uu/test/src/test.rs +++ b/src/uu/test/src/test.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) mahkoh (ju.orth [at] gmail [dot] com) -// (c) Daniel Rocco -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/touch/src/touch.rs b/src/uu/touch/src/touch.rs index baa28890c..135d119bd 100644 --- a/src/uu/touch/src/touch.rs +++ b/src/uu/touch/src/touch.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Nick Platt -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uu/uname/src/uname.rs b/src/uu/uname/src/uname.rs index 8b8679234..73ab07a63 100644 --- a/src/uu/uname/src/uname.rs +++ b/src/uu/uname/src/uname.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Joao Oliveira -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uu/who/src/who.rs b/src/uu/who/src/who.rs index fbfff80d7..29929b138 100644 --- a/src/uu/who/src/who.rs +++ b/src/uu/who/src/who.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/features/encoding.rs b/src/uucore/src/lib/features/encoding.rs index a42044eea..14fdbb38e 100644 --- a/src/uucore/src/lib/features/encoding.rs +++ b/src/uucore/src/lib/features/encoding.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/features/entries.rs b/src/uucore/src/lib/features/entries.rs index c0229aa3e..c06c5116e 100644 --- a/src/uucore/src/lib/features/entries.rs +++ b/src/uucore/src/lib/features/entries.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/features/fs.rs b/src/uucore/src/lib/features/fs.rs index 5804a2235..e4c5e84de 100644 --- a/src/uucore/src/lib/features/fs.rs +++ b/src/uucore/src/lib/features/fs.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Joseph Crail -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/features/fsext.rs b/src/uucore/src/lib/features/fsext.rs index 6f831fb92..f526e7fde 100644 --- a/src/uucore/src/lib/features/fsext.rs +++ b/src/uucore/src/lib/features/fsext.rs @@ -1,9 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// (c) Fangxu Hu -// (c) Sylvestre Ledru -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uucore/src/lib/features/mode.rs b/src/uucore/src/lib/features/mode.rs index 9435e3201..cbaea71bf 100644 --- a/src/uucore/src/lib/features/mode.rs +++ b/src/uucore/src/lib/features/mode.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Alex Lyon -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/features/process.rs b/src/uucore/src/lib/features/process.rs index 4a52f0fc4..8e7e46479 100644 --- a/src/uucore/src/lib/features/process.rs +++ b/src/uucore/src/lib/features/process.rs @@ -1,8 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Maciej Dziardziel -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uucore/src/lib/features/signals.rs b/src/uucore/src/lib/features/signals.rs index c9f7295ee..423eb19c9 100644 --- a/src/uucore/src/lib/features/signals.rs +++ b/src/uucore/src/lib/features/signals.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Maciej Dziardziel -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uucore/src/lib/features/sum.rs b/src/uucore/src/lib/features/sum.rs index c1cfaf5f8..d4945421e 100644 --- a/src/uucore/src/lib/features/sum.rs +++ b/src/uucore/src/lib/features/sum.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Yuan YangHao -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. diff --git a/src/uucore/src/lib/features/utmpx.rs b/src/uucore/src/lib/features/utmpx.rs index 35c5ac5b0..1b6ecbcf5 100644 --- a/src/uucore/src/lib/features/utmpx.rs +++ b/src/uucore/src/lib/features/utmpx.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. // diff --git a/src/uucore/src/lib/features/wide.rs b/src/uucore/src/lib/features/wide.rs index 6b9368f50..68341cd68 100644 --- a/src/uucore/src/lib/features/wide.rs +++ b/src/uucore/src/lib/features/wide.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Peter Atashian -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/macros.rs b/src/uucore/src/lib/macros.rs index cc8bdafd8..d1893dd9a 100644 --- a/src/uucore/src/lib/macros.rs +++ b/src/uucore/src/lib/macros.rs @@ -36,8 +36,6 @@ use std::sync::atomic::AtomicBool; // This file is part of the uutils coreutils package. // -// (c) Alex Lyon -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/mods/ranges.rs b/src/uucore/src/lib/mods/ranges.rs index 76a61b9a6..29f402183 100644 --- a/src/uucore/src/lib/mods/ranges.rs +++ b/src/uucore/src/lib/mods/ranges.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Rolf Morel -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/mods/update_control.rs b/src/uucore/src/lib/mods/update_control.rs index e46afd185..bd4292514 100644 --- a/src/uucore/src/lib/mods/update_control.rs +++ b/src/uucore/src/lib/mods/update_control.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) John Shin -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/src/uucore/src/lib/parser/parse_time.rs b/src/uucore/src/lib/parser/parse_time.rs index 1a7b66e90..727ee28b1 100644 --- a/src/uucore/src/lib/parser/parse_time.rs +++ b/src/uucore/src/lib/parser/parse_time.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Alex Lyon -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. diff --git a/tests/by-util/test_base32.rs b/tests/by-util/test_base32.rs index 395c96c2c..b8e72cb04 100644 --- a/tests/by-util/test_base32.rs +++ b/tests/by-util/test_base32.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) Jian Zeng -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. // diff --git a/tests/by-util/test_factor.rs b/tests/by-util/test_factor.rs index cf3744964..9154f57cf 100644 --- a/tests/by-util/test_factor.rs +++ b/tests/by-util/test_factor.rs @@ -1,7 +1,5 @@ // This file is part of the uutils coreutils package. // -// (c) kwantam -// // For the full copyright and license information, please view the LICENSE file // that was distributed with this source code. #![allow(clippy::unreadable_literal)] diff --git a/tests/by-util/test_test.rs b/tests/by-util/test_test.rs index bf5c50b7f..91af9033a 100644 --- a/tests/by-util/test_test.rs +++ b/tests/by-util/test_test.rs @@ -1,9 +1,6 @@ // // This file is part of the uutils coreutils package. // -// (c) mahkoh (ju.orth [at] gmail [dot] com) -// (c) Daniel Rocco -// // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. //