diff --git a/fuzz/fuzz_targets/fuzz_date.rs b/fuzz/fuzz_targets/fuzz_date.rs index 32441b155..cefd1ceb6 100644 --- a/fuzz/fuzz_targets/fuzz_date.rs +++ b/fuzz/fuzz_targets/fuzz_date.rs @@ -1,4 +1,10 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + #![no_main] + use libfuzzer_sys::fuzz_target; use std::ffi::OsString; diff --git a/fuzz/fuzz_targets/fuzz_echo.rs b/fuzz/fuzz_targets/fuzz_echo.rs index e6b0ba9a6..a6441cf00 100644 --- a/fuzz/fuzz_targets/fuzz_echo.rs +++ b/fuzz/fuzz_targets/fuzz_echo.rs @@ -1,4 +1,10 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + #![no_main] + use libfuzzer_sys::fuzz_target; use uu_echo::uumain; diff --git a/fuzz/fuzz_targets/fuzz_parse_glob.rs b/fuzz/fuzz_targets/fuzz_parse_glob.rs index 66e772959..2f7a0ec5b 100644 --- a/fuzz/fuzz_targets/fuzz_parse_glob.rs +++ b/fuzz/fuzz_targets/fuzz_parse_glob.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + #![no_main] use libfuzzer_sys::fuzz_target; diff --git a/fuzz/fuzz_targets/fuzz_parse_size.rs b/fuzz/fuzz_targets/fuzz_parse_size.rs index 4e8d7e221..d0fb3195d 100644 --- a/fuzz/fuzz_targets/fuzz_parse_size.rs +++ b/fuzz/fuzz_targets/fuzz_parse_size.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + #![no_main] use libfuzzer_sys::fuzz_target; diff --git a/fuzz/fuzz_targets/fuzz_parse_time.rs b/fuzz/fuzz_targets/fuzz_parse_time.rs index 5745e5c87..ee016fd0b 100644 --- a/fuzz/fuzz_targets/fuzz_parse_time.rs +++ b/fuzz/fuzz_targets/fuzz_parse_time.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + #![no_main] use libfuzzer_sys::fuzz_target; diff --git a/src/uu/arch/src/main.rs b/src/uu/arch/src/main.rs index a47da8346..18261dbbb 100644 --- a/src/uu/arch/src/main.rs +++ b/src/uu/arch/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_arch); diff --git a/src/uu/b2sum/src/main.rs b/src/uu/b2sum/src/main.rs index 422fa2fe7..d238c72ed 100644 --- a/src/uu/b2sum/src/main.rs +++ b/src/uu/b2sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_b2sum); diff --git a/src/uu/base32/src/main.rs b/src/uu/base32/src/main.rs index e7ab9a5fd..01584bd0a 100644 --- a/src/uu/base32/src/main.rs +++ b/src/uu/base32/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_base32); diff --git a/src/uu/base64/src/main.rs b/src/uu/base64/src/main.rs index ea5728880..5ff5d0e94 100644 --- a/src/uu/base64/src/main.rs +++ b/src/uu/base64/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_base64); diff --git a/src/uu/basename/src/main.rs b/src/uu/basename/src/main.rs index 68d003269..a7cb04656 100644 --- a/src/uu/basename/src/main.rs +++ b/src/uu/basename/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_basename); diff --git a/src/uu/basenc/src/main.rs b/src/uu/basenc/src/main.rs index a035e9a68..fecfdae90 100644 --- a/src/uu/basenc/src/main.rs +++ b/src/uu/basenc/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_basenc); diff --git a/src/uu/cat/src/main.rs b/src/uu/cat/src/main.rs index df198c960..e7e828a48 100644 --- a/src/uu/cat/src/main.rs +++ b/src/uu/cat/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_cat); diff --git a/src/uu/chgrp/src/main.rs b/src/uu/chgrp/src/main.rs index 7d5330a61..e8c310cbc 100644 --- a/src/uu/chgrp/src/main.rs +++ b/src/uu/chgrp/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_chgrp); diff --git a/src/uu/chmod/src/main.rs b/src/uu/chmod/src/main.rs index f0ec0c2e9..6f48e7bd6 100644 --- a/src/uu/chmod/src/main.rs +++ b/src/uu/chmod/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_chmod); diff --git a/src/uu/chown/src/main.rs b/src/uu/chown/src/main.rs index db3a4f1d2..628f61e77 100644 --- a/src/uu/chown/src/main.rs +++ b/src/uu/chown/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_chown); diff --git a/src/uu/chroot/src/main.rs b/src/uu/chroot/src/main.rs index a8ccd8254..12406c392 100644 --- a/src/uu/chroot/src/main.rs +++ b/src/uu/chroot/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_chroot); diff --git a/src/uu/cksum/src/main.rs b/src/uu/cksum/src/main.rs index 8cab56681..7b9fdbe76 100644 --- a/src/uu/cksum/src/main.rs +++ b/src/uu/cksum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code.uucore::bin!(uu_cksum); + uucore::bin!(uu_cksum); diff --git a/src/uu/comm/src/main.rs b/src/uu/comm/src/main.rs index 0417389c2..635d04506 100644 --- a/src/uu/comm/src/main.rs +++ b/src/uu/comm/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_comm); diff --git a/src/uu/cp/src/main.rs b/src/uu/cp/src/main.rs index 920615e70..77123017d 100644 --- a/src/uu/cp/src/main.rs +++ b/src/uu/cp/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_cp); diff --git a/src/uu/csplit/src/main.rs b/src/uu/csplit/src/main.rs index 1ada30007..b3912b461 100644 --- a/src/uu/csplit/src/main.rs +++ b/src/uu/csplit/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_csplit); diff --git a/src/uu/cut/src/main.rs b/src/uu/cut/src/main.rs index 2f000a7f3..79a484b89 100644 --- a/src/uu/cut/src/main.rs +++ b/src/uu/cut/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_cut); diff --git a/src/uu/date/src/main.rs b/src/uu/date/src/main.rs index 7483582de..21e388867 100644 --- a/src/uu/date/src/main.rs +++ b/src/uu/date/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_date); diff --git a/src/uu/dd/src/main.rs b/src/uu/dd/src/main.rs index 267fe5a3e..63bcdf7b4 100644 --- a/src/uu/dd/src/main.rs +++ b/src/uu/dd/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_dd); // spell-checker:ignore procs uucore diff --git a/src/uu/df/src/main.rs b/src/uu/df/src/main.rs index 3868d685a..33c7fe98c 100644 --- a/src/uu/df/src/main.rs +++ b/src/uu/df/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_df); diff --git a/src/uu/dir/src/main.rs b/src/uu/dir/src/main.rs index c5b5b6363..23123b7b5 100644 --- a/src/uu/dir/src/main.rs +++ b/src/uu/dir/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_dir); diff --git a/src/uu/dircolors/src/main.rs b/src/uu/dircolors/src/main.rs index f8c8d4ea5..ceeb86f68 100644 --- a/src/uu/dircolors/src/main.rs +++ b/src/uu/dircolors/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_dircolors); diff --git a/src/uu/dirname/src/main.rs b/src/uu/dirname/src/main.rs index aa4891134..e665dd283 100644 --- a/src/uu/dirname/src/main.rs +++ b/src/uu/dirname/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_dirname); diff --git a/src/uu/du/src/main.rs b/src/uu/du/src/main.rs index 3d00ad9b5..c815a7444 100644 --- a/src/uu/du/src/main.rs +++ b/src/uu/du/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_du); diff --git a/src/uu/echo/src/main.rs b/src/uu/echo/src/main.rs index 85747c448..519214110 100644 --- a/src/uu/echo/src/main.rs +++ b/src/uu/echo/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_echo); diff --git a/src/uu/env/src/main.rs b/src/uu/env/src/main.rs index 662167388..3707a251e 100644 --- a/src/uu/env/src/main.rs +++ b/src/uu/env/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_env); diff --git a/src/uu/expand/src/main.rs b/src/uu/expand/src/main.rs index 2d88f6187..206eb8ba1 100644 --- a/src/uu/expand/src/main.rs +++ b/src/uu/expand/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_expand); diff --git a/src/uu/expr/src/main.rs b/src/uu/expr/src/main.rs index 1a4134906..e25cbe049 100644 --- a/src/uu/expr/src/main.rs +++ b/src/uu/expr/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_expr); diff --git a/src/uu/factor/src/main.rs b/src/uu/factor/src/main.rs index d091c02cb..83cec5d06 100644 --- a/src/uu/factor/src/main.rs +++ b/src/uu/factor/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_factor); diff --git a/src/uu/false/src/main.rs b/src/uu/false/src/main.rs index 3b46ec126..1c019d94a 100644 --- a/src/uu/false/src/main.rs +++ b/src/uu/false/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_false); diff --git a/src/uu/fmt/src/main.rs b/src/uu/fmt/src/main.rs index 7d9bcbd4d..54b1086de 100644 --- a/src/uu/fmt/src/main.rs +++ b/src/uu/fmt/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_fmt); diff --git a/src/uu/fold/src/main.rs b/src/uu/fold/src/main.rs index 7658a5d01..672051dac 100644 --- a/src/uu/fold/src/main.rs +++ b/src/uu/fold/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_fold); diff --git a/src/uu/groups/src/main.rs b/src/uu/groups/src/main.rs index 477194fa0..242a7708c 100644 --- a/src/uu/groups/src/main.rs +++ b/src/uu/groups/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_groups); diff --git a/src/uu/head/src/main.rs b/src/uu/head/src/main.rs index 850a725e4..48b893d0c 100644 --- a/src/uu/head/src/main.rs +++ b/src/uu/head/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_head); diff --git a/src/uu/hostid/src/main.rs b/src/uu/hostid/src/main.rs index de9e22fbf..155691956 100644 --- a/src/uu/hostid/src/main.rs +++ b/src/uu/hostid/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_hostid); diff --git a/src/uu/hostname/src/main.rs b/src/uu/hostname/src/main.rs index 09058e44a..7ad3364c7 100644 --- a/src/uu/hostname/src/main.rs +++ b/src/uu/hostname/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_hostname); diff --git a/src/uu/id/src/main.rs b/src/uu/id/src/main.rs index 21a7a8514..08095b138 100644 --- a/src/uu/id/src/main.rs +++ b/src/uu/id/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_id); diff --git a/src/uu/install/src/main.rs b/src/uu/install/src/main.rs index 993acae6a..791099d54 100644 --- a/src/uu/install/src/main.rs +++ b/src/uu/install/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_install); diff --git a/src/uu/join/src/main.rs b/src/uu/join/src/main.rs index 7520de6d7..3ad16f0e9 100644 --- a/src/uu/join/src/main.rs +++ b/src/uu/join/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_join); diff --git a/src/uu/kill/src/main.rs b/src/uu/kill/src/main.rs index 6f3fbac47..23d663cfa 100644 --- a/src/uu/kill/src/main.rs +++ b/src/uu/kill/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_kill); diff --git a/src/uu/link/src/main.rs b/src/uu/link/src/main.rs index 8c4e653f4..f29e800cf 100644 --- a/src/uu/link/src/main.rs +++ b/src/uu/link/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_link); diff --git a/src/uu/ln/src/main.rs b/src/uu/ln/src/main.rs index c59835fc3..de12750ed 100644 --- a/src/uu/ln/src/main.rs +++ b/src/uu/ln/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_ln); diff --git a/src/uu/logname/src/main.rs b/src/uu/logname/src/main.rs index ef5d7d46d..9a1e92e87 100644 --- a/src/uu/logname/src/main.rs +++ b/src/uu/logname/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_logname); diff --git a/src/uu/ls/src/main.rs b/src/uu/ls/src/main.rs index c2a935e6d..4eb2fc454 100644 --- a/src/uu/ls/src/main.rs +++ b/src/uu/ls/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_ls); diff --git a/src/uu/md5sum/src/main.rs b/src/uu/md5sum/src/main.rs index d5509656f..60fee5abd 100644 --- a/src/uu/md5sum/src/main.rs +++ b/src/uu/md5sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_md5sum); diff --git a/src/uu/md5sum/src/md5sum.rs b/src/uu/md5sum/src/md5sum.rs index c9366eb4b..05a482c53 100644 --- a/src/uu/md5sum/src/md5sum.rs +++ b/src/uu/md5sum/src/md5sum.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uu_checksum_common::declare_standalone!("md5sum", uucore::checksum::AlgoKind::Md5); diff --git a/src/uu/mkdir/src/main.rs b/src/uu/mkdir/src/main.rs index e3ea12f79..e1be6001f 100644 --- a/src/uu/mkdir/src/main.rs +++ b/src/uu/mkdir/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_mkdir); diff --git a/src/uu/mkfifo/src/main.rs b/src/uu/mkfifo/src/main.rs index b803f2c6f..9ba5b60a3 100644 --- a/src/uu/mkfifo/src/main.rs +++ b/src/uu/mkfifo/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_mkfifo); diff --git a/src/uu/mknod/src/main.rs b/src/uu/mknod/src/main.rs index cfb4f1982..f46e834ce 100644 --- a/src/uu/mknod/src/main.rs +++ b/src/uu/mknod/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_mknod); diff --git a/src/uu/mktemp/src/main.rs b/src/uu/mktemp/src/main.rs index 4fb826ebb..2f33584a5 100644 --- a/src/uu/mktemp/src/main.rs +++ b/src/uu/mktemp/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_mktemp); diff --git a/src/uu/more/src/main.rs b/src/uu/more/src/main.rs index d0c3c3e23..84fa7607b 100644 --- a/src/uu/more/src/main.rs +++ b/src/uu/more/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_more); diff --git a/src/uu/mv/src/main.rs b/src/uu/mv/src/main.rs index d0abc28c1..243f5cfd8 100644 --- a/src/uu/mv/src/main.rs +++ b/src/uu/mv/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_mv); diff --git a/src/uu/nice/src/main.rs b/src/uu/nice/src/main.rs index 7e7f23792..723964422 100644 --- a/src/uu/nice/src/main.rs +++ b/src/uu/nice/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_nice); diff --git a/src/uu/nl/src/main.rs b/src/uu/nl/src/main.rs index 3b66630fa..1416e913d 100644 --- a/src/uu/nl/src/main.rs +++ b/src/uu/nl/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_nl); diff --git a/src/uu/nohup/src/main.rs b/src/uu/nohup/src/main.rs index 0d197bbf2..41f78efc5 100644 --- a/src/uu/nohup/src/main.rs +++ b/src/uu/nohup/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_nohup); diff --git a/src/uu/nproc/src/main.rs b/src/uu/nproc/src/main.rs index 71853dd03..8f1ff6343 100644 --- a/src/uu/nproc/src/main.rs +++ b/src/uu/nproc/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_nproc); diff --git a/src/uu/numfmt/src/main.rs b/src/uu/numfmt/src/main.rs index 753e56252..f34e1a4f9 100644 --- a/src/uu/numfmt/src/main.rs +++ b/src/uu/numfmt/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_numfmt); diff --git a/src/uu/od/src/main.rs b/src/uu/od/src/main.rs index d8e0b2c8c..07715d617 100644 --- a/src/uu/od/src/main.rs +++ b/src/uu/od/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_od); diff --git a/src/uu/paste/src/main.rs b/src/uu/paste/src/main.rs index 00b99bc6b..ecdc2e3be 100644 --- a/src/uu/paste/src/main.rs +++ b/src/uu/paste/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_paste); diff --git a/src/uu/pathchk/src/main.rs b/src/uu/pathchk/src/main.rs index 6a2a0b945..0da43e0e7 100644 --- a/src/uu/pathchk/src/main.rs +++ b/src/uu/pathchk/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_pathchk); diff --git a/src/uu/pinky/src/main.rs b/src/uu/pinky/src/main.rs index 8826e60a0..7ba190966 100644 --- a/src/uu/pinky/src/main.rs +++ b/src/uu/pinky/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_pinky); diff --git a/src/uu/pr/src/main.rs b/src/uu/pr/src/main.rs index faa7a8114..a4424dd92 100644 --- a/src/uu/pr/src/main.rs +++ b/src/uu/pr/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_pr); // spell-checker:ignore procs uucore diff --git a/src/uu/printenv/src/main.rs b/src/uu/printenv/src/main.rs index fcf429776..083b55cd7 100644 --- a/src/uu/printenv/src/main.rs +++ b/src/uu/printenv/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_printenv); diff --git a/src/uu/printf/src/main.rs b/src/uu/printf/src/main.rs index 7bb4ae74d..abc081711 100644 --- a/src/uu/printf/src/main.rs +++ b/src/uu/printf/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_printf); diff --git a/src/uu/ptx/src/main.rs b/src/uu/ptx/src/main.rs index 926e5f2dd..bdea98493 100644 --- a/src/uu/ptx/src/main.rs +++ b/src/uu/ptx/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_ptx); diff --git a/src/uu/pwd/src/main.rs b/src/uu/pwd/src/main.rs index 710a9b230..2387ae6d3 100644 --- a/src/uu/pwd/src/main.rs +++ b/src/uu/pwd/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_pwd); diff --git a/src/uu/readlink/src/main.rs b/src/uu/readlink/src/main.rs index 57d5988f7..7f6e48606 100644 --- a/src/uu/readlink/src/main.rs +++ b/src/uu/readlink/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_readlink); diff --git a/src/uu/realpath/src/main.rs b/src/uu/realpath/src/main.rs index 0d7e188d1..9d6fcf111 100644 --- a/src/uu/realpath/src/main.rs +++ b/src/uu/realpath/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_realpath); diff --git a/src/uu/rm/src/main.rs b/src/uu/rm/src/main.rs index 966365137..4466c868c 100644 --- a/src/uu/rm/src/main.rs +++ b/src/uu/rm/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_rm); diff --git a/src/uu/rmdir/src/main.rs b/src/uu/rmdir/src/main.rs index b10f0ade8..272b93702 100644 --- a/src/uu/rmdir/src/main.rs +++ b/src/uu/rmdir/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_rmdir); diff --git a/src/uu/seq/src/main.rs b/src/uu/seq/src/main.rs index 4b8a296b9..87dc80868 100644 --- a/src/uu/seq/src/main.rs +++ b/src/uu/seq/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_seq); diff --git a/src/uu/sha1sum/src/main.rs b/src/uu/sha1sum/src/main.rs index 18d80cfde..330685aab 100644 --- a/src/uu/sha1sum/src/main.rs +++ b/src/uu/sha1sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sha1sum); diff --git a/src/uu/sha1sum/src/sha1sum.rs b/src/uu/sha1sum/src/sha1sum.rs index e715c7966..a85097d43 100644 --- a/src/uu/sha1sum/src/sha1sum.rs +++ b/src/uu/sha1sum/src/sha1sum.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uu_checksum_common::declare_standalone!("sha1sum", uucore::checksum::AlgoKind::Sha1); diff --git a/src/uu/sha224sum/src/main.rs b/src/uu/sha224sum/src/main.rs index 974671331..a1f28a153 100644 --- a/src/uu/sha224sum/src/main.rs +++ b/src/uu/sha224sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sha224sum); diff --git a/src/uu/sha224sum/src/sha224sum.rs b/src/uu/sha224sum/src/sha224sum.rs index 349104675..2cfb57167 100644 --- a/src/uu/sha224sum/src/sha224sum.rs +++ b/src/uu/sha224sum/src/sha224sum.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uu_checksum_common::declare_standalone!("sha224sum", uucore::checksum::AlgoKind::Sha224); diff --git a/src/uu/sha256sum/src/main.rs b/src/uu/sha256sum/src/main.rs index 323cd315d..9f1cf8041 100644 --- a/src/uu/sha256sum/src/main.rs +++ b/src/uu/sha256sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sha256sum); diff --git a/src/uu/sha256sum/src/sha256sum.rs b/src/uu/sha256sum/src/sha256sum.rs index ab47a23df..5a3ea1f43 100644 --- a/src/uu/sha256sum/src/sha256sum.rs +++ b/src/uu/sha256sum/src/sha256sum.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uu_checksum_common::declare_standalone!("sha256sum", uucore::checksum::AlgoKind::Sha256); diff --git a/src/uu/sha384sum/src/main.rs b/src/uu/sha384sum/src/main.rs index c87f32e28..8338e9960 100644 --- a/src/uu/sha384sum/src/main.rs +++ b/src/uu/sha384sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sha384sum); diff --git a/src/uu/sha384sum/src/sha384sum.rs b/src/uu/sha384sum/src/sha384sum.rs index 818478e29..4065a1fdf 100644 --- a/src/uu/sha384sum/src/sha384sum.rs +++ b/src/uu/sha384sum/src/sha384sum.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uu_checksum_common::declare_standalone!("sha384sum", uucore::checksum::AlgoKind::Sha384); diff --git a/src/uu/sha512sum/src/main.rs b/src/uu/sha512sum/src/main.rs index 64a6ecea6..1cf4b957a 100644 --- a/src/uu/sha512sum/src/main.rs +++ b/src/uu/sha512sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sha512sum); diff --git a/src/uu/sha512sum/src/sha512sum.rs b/src/uu/sha512sum/src/sha512sum.rs index 125d263f0..7a02a7530 100644 --- a/src/uu/sha512sum/src/sha512sum.rs +++ b/src/uu/sha512sum/src/sha512sum.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uu_checksum_common::declare_standalone!("sha512sum", uucore::checksum::AlgoKind::Sha512); diff --git a/src/uu/shred/src/main.rs b/src/uu/shred/src/main.rs index c3525c15e..45d440058 100644 --- a/src/uu/shred/src/main.rs +++ b/src/uu/shred/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_shred); diff --git a/src/uu/shuf/src/main.rs b/src/uu/shuf/src/main.rs index 8214db209..1cfbeb05c 100644 --- a/src/uu/shuf/src/main.rs +++ b/src/uu/shuf/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_shuf); diff --git a/src/uu/shuf/src/nonrepeating_iterator.rs b/src/uu/shuf/src/nonrepeating_iterator.rs index b74103394..4cca9ea8c 100644 --- a/src/uu/shuf/src/nonrepeating_iterator.rs +++ b/src/uu/shuf/src/nonrepeating_iterator.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + // hijack HashMap for performance type HashMap = std::collections::HashMap; diff --git a/src/uu/sleep/src/main.rs b/src/uu/sleep/src/main.rs index 536edbb23..049b34bbd 100644 --- a/src/uu/sleep/src/main.rs +++ b/src/uu/sleep/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sleep); diff --git a/src/uu/sort/src/main.rs b/src/uu/sort/src/main.rs index f552ce37e..1d4b4c59f 100644 --- a/src/uu/sort/src/main.rs +++ b/src/uu/sort/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sort); diff --git a/src/uu/split/src/main.rs b/src/uu/split/src/main.rs index 0ef3e026f..6503d8578 100644 --- a/src/uu/split/src/main.rs +++ b/src/uu/split/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_split); diff --git a/src/uu/stat/src/main.rs b/src/uu/stat/src/main.rs index 3607ac4ae..0e81b7a93 100644 --- a/src/uu/stat/src/main.rs +++ b/src/uu/stat/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_stat); diff --git a/src/uu/stdbuf/src/main.rs b/src/uu/stdbuf/src/main.rs index cf6a2408a..72317b23c 100644 --- a/src/uu/stdbuf/src/main.rs +++ b/src/uu/stdbuf/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_stdbuf); diff --git a/src/uu/stty/build.rs b/src/uu/stty/build.rs index 0d26ea321..e8cce5884 100644 --- a/src/uu/stty/build.rs +++ b/src/uu/stty/build.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + use cfg_aliases::cfg_aliases; fn main() { diff --git a/src/uu/stty/src/main.rs b/src/uu/stty/src/main.rs index 4f9b9799a..b2b8dae0a 100644 --- a/src/uu/stty/src/main.rs +++ b/src/uu/stty/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_stty); diff --git a/src/uu/sum/src/main.rs b/src/uu/sum/src/main.rs index 9d3c72e6f..aafb4f2e6 100644 --- a/src/uu/sum/src/main.rs +++ b/src/uu/sum/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code.uucore::bin!(uu_sum); + uucore::bin!(uu_sum); diff --git a/src/uu/sync/src/main.rs b/src/uu/sync/src/main.rs index 54747b050..b9f08048a 100644 --- a/src/uu/sync/src/main.rs +++ b/src/uu/sync/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_sync); diff --git a/src/uu/tac/src/main.rs b/src/uu/tac/src/main.rs index 7e1437732..b4ba40af9 100644 --- a/src/uu/tac/src/main.rs +++ b/src/uu/tac/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_tac); diff --git a/src/uu/tail/src/main.rs b/src/uu/tail/src/main.rs index 6bd55d279..c72447c12 100644 --- a/src/uu/tail/src/main.rs +++ b/src/uu/tail/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_tail); diff --git a/src/uu/tee/src/main.rs b/src/uu/tee/src/main.rs index 59bb3184b..136c1b247 100644 --- a/src/uu/tee/src/main.rs +++ b/src/uu/tee/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_tee); diff --git a/src/uu/test/src/main.rs b/src/uu/test/src/main.rs index 58f20bea4..54fa20cbe 100644 --- a/src/uu/test/src/main.rs +++ b/src/uu/test/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_test); diff --git a/src/uu/timeout/src/main.rs b/src/uu/timeout/src/main.rs index e7d3224ff..8afb9512f 100644 --- a/src/uu/timeout/src/main.rs +++ b/src/uu/timeout/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_timeout); diff --git a/src/uu/touch/src/main.rs b/src/uu/touch/src/main.rs index 33b77a241..12e4b1049 100644 --- a/src/uu/touch/src/main.rs +++ b/src/uu/touch/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_touch); diff --git a/src/uu/tr/src/main.rs b/src/uu/tr/src/main.rs index 7365a22ad..0294c81aa 100644 --- a/src/uu/tr/src/main.rs +++ b/src/uu/tr/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_tr); diff --git a/src/uu/true/src/main.rs b/src/uu/true/src/main.rs index 700bece65..ead3bd81f 100644 --- a/src/uu/true/src/main.rs +++ b/src/uu/true/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_true); diff --git a/src/uu/truncate/src/main.rs b/src/uu/truncate/src/main.rs index 6900db57d..cf34d0695 100644 --- a/src/uu/truncate/src/main.rs +++ b/src/uu/truncate/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_truncate); diff --git a/src/uu/tsort/src/main.rs b/src/uu/tsort/src/main.rs index 480d14ffd..53fd8f7af 100644 --- a/src/uu/tsort/src/main.rs +++ b/src/uu/tsort/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_tsort); diff --git a/src/uu/tty/src/main.rs b/src/uu/tty/src/main.rs index 4b708cd95..16c5dc222 100644 --- a/src/uu/tty/src/main.rs +++ b/src/uu/tty/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_tty); diff --git a/src/uu/uname/src/main.rs b/src/uu/uname/src/main.rs index 98640b395..fcc69990a 100644 --- a/src/uu/uname/src/main.rs +++ b/src/uu/uname/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_uname); diff --git a/src/uu/unexpand/src/main.rs b/src/uu/unexpand/src/main.rs index d7c90ba7e..94222f688 100644 --- a/src/uu/unexpand/src/main.rs +++ b/src/uu/unexpand/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_unexpand); diff --git a/src/uu/uniq/src/main.rs b/src/uu/uniq/src/main.rs index b6e6251cd..dad470550 100644 --- a/src/uu/uniq/src/main.rs +++ b/src/uu/uniq/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_uniq); diff --git a/src/uu/unlink/src/main.rs b/src/uu/unlink/src/main.rs index 8e107866e..f8d6479c8 100644 --- a/src/uu/unlink/src/main.rs +++ b/src/uu/unlink/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_unlink); diff --git a/src/uu/uptime/src/main.rs b/src/uu/uptime/src/main.rs index 960886b86..ec30c0d5c 100644 --- a/src/uu/uptime/src/main.rs +++ b/src/uu/uptime/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_uptime); diff --git a/src/uu/users/src/main.rs b/src/uu/users/src/main.rs index eab36c2e3..1eefb66c6 100644 --- a/src/uu/users/src/main.rs +++ b/src/uu/users/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_users); diff --git a/src/uu/vdir/src/main.rs b/src/uu/vdir/src/main.rs index 9d9ba9de0..1e0f6909f 100644 --- a/src/uu/vdir/src/main.rs +++ b/src/uu/vdir/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_vdir); diff --git a/src/uu/wc/src/main.rs b/src/uu/wc/src/main.rs index a89861765..788d6ce7b 100644 --- a/src/uu/wc/src/main.rs +++ b/src/uu/wc/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_wc); diff --git a/src/uu/who/src/main.rs b/src/uu/who/src/main.rs index 59edbba77..0d2f887af 100644 --- a/src/uu/who/src/main.rs +++ b/src/uu/who/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_who); diff --git a/src/uu/whoami/src/main.rs b/src/uu/whoami/src/main.rs index 7e9d7276a..0c9ee7f68 100644 --- a/src/uu/whoami/src/main.rs +++ b/src/uu/whoami/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_whoami); diff --git a/src/uu/yes/src/main.rs b/src/uu/yes/src/main.rs index 8d119cf5c..9d096d952 100644 --- a/src/uu/yes/src/main.rs +++ b/src/uu/yes/src/main.rs @@ -1 +1,6 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + uucore::bin!(uu_yes); diff --git a/src/uucore/src/lib/features/selinux.rs b/src/uucore/src/lib/features/selinux.rs index 9b0bf58ab..28c68a1b6 100644 --- a/src/uucore/src/lib/features/selinux.rs +++ b/src/uucore/src/lib/features/selinux.rs @@ -1,4 +1,4 @@ -// This file is part of the uutils uucore package. +// This file is part of the uutils coreutils package. // // 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/smack.rs b/src/uucore/src/lib/features/smack.rs index d901bde00..375db8859 100644 --- a/src/uucore/src/lib/features/smack.rs +++ b/src/uucore/src/lib/features/smack.rs @@ -1,9 +1,10 @@ -// This file is part of the uutils uucore package. +// This file is part of the uutils coreutils package. // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. // spell-checker:ignore smackfs + //! SMACK (Simplified Mandatory Access Control Kernel) support use std::fs; diff --git a/tests/by-util/test_timeout.rs b/tests/by-util/test_timeout.rs index a9b9b29db..4bbc532e9 100644 --- a/tests/by-util/test_timeout.rs +++ b/tests/by-util/test_timeout.rs @@ -1,12 +1,12 @@ -use std::time::Duration; - // This file is part of the uutils coreutils package. // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -// spell-checker:ignore dont -use rstest::rstest; +// spell-checker:ignore dont + +use rstest::rstest; +use std::time::Duration; use uucore::display::Quotable; use uutests::util::TestScenario; use uutests::{new_ucmd, util_name}; diff --git a/tests/test_uudoc.rs b/tests/test_uudoc.rs index a1e32f484..8c6a58398 100644 --- a/tests/test_uudoc.rs +++ b/tests/test_uudoc.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + //! Tests on the `uudoc` binary. //! //! To run the uudoc @@ -9,6 +14,7 @@ //! ``` //! cargo test --features uudoc //! ``` + #![cfg(feature = "uudoc")] use std::env; diff --git a/util/rewrite_rules.rs b/util/rewrite_rules.rs index 3d680e24c..95e5b1dac 100644 --- a/util/rewrite_rules.rs +++ b/util/rewrite_rules.rs @@ -1,3 +1,8 @@ +// This file is part of the uutils coreutils package. +// +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + //! Rules to update the codebase using `rerast` /// Converts try!() to ?