From e887944ef1eab809d262dd5e8896f558f24a60ff Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 28 Oct 2023 16:53:09 +0200 Subject: [PATCH] Remove "last synced with" comments --- src/uu/cat/src/cat.rs | 2 -- src/uu/env/src/env.rs | 2 -- src/uu/logname/src/logname.rs | 2 -- src/uu/printenv/src/printenv.rs | 2 -- src/uu/uname/src/uname.rs | 2 -- src/uu/unlink/src/unlink.rs | 2 -- src/uu/whoami/src/whoami.rs | 2 -- src/uu/yes/src/yes.rs | 2 -- 8 files changed, 16 deletions(-) diff --git a/src/uu/cat/src/cat.rs b/src/uu/cat/src/cat.rs index d49f4aa07..10e5d9ce1 100644 --- a/src/uu/cat/src/cat.rs +++ b/src/uu/cat/src/cat.rs @@ -4,8 +4,6 @@ // file that was distributed with this source code. // spell-checker:ignore (ToDO) nonprint nonblank nonprinting - -// last synced with: cat (GNU coreutils) 8.13 use clap::{crate_version, Arg, ArgAction, Command}; use std::fs::{metadata, File}; use std::io::{self, IsTerminal, Read, Write}; diff --git a/src/uu/env/src/env.rs b/src/uu/env/src/env.rs index d7c9687de..608357f50 100644 --- a/src/uu/env/src/env.rs +++ b/src/uu/env/src/env.rs @@ -3,8 +3,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -/* last synced with: env (GNU coreutils) 8.13 */ - // spell-checker:ignore (ToDO) chdir execvp progname subcommand subcommands unsets setenv putenv spawnp SIGSEGV SIGBUS sigaction use clap::{crate_name, crate_version, Arg, ArgAction, Command}; diff --git a/src/uu/logname/src/logname.rs b/src/uu/logname/src/logname.rs index 52505d98d..55d4fec75 100644 --- a/src/uu/logname/src/logname.rs +++ b/src/uu/logname/src/logname.rs @@ -3,8 +3,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -/* last synced with: logname (GNU coreutils) 8.22 */ - // spell-checker:ignore (ToDO) getlogin userlogin use clap::{crate_version, Command}; diff --git a/src/uu/printenv/src/printenv.rs b/src/uu/printenv/src/printenv.rs index cab24336f..47bd7c259 100644 --- a/src/uu/printenv/src/printenv.rs +++ b/src/uu/printenv/src/printenv.rs @@ -3,8 +3,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -/* last synced with: printenv (GNU coreutils) 8.13 */ - use clap::{crate_version, Arg, ArgAction, Command}; use std::env; use uucore::{error::UResult, format_usage, help_about, help_usage}; diff --git a/src/uu/uname/src/uname.rs b/src/uu/uname/src/uname.rs index 73ab07a63..e6d5c3a0a 100644 --- a/src/uu/uname/src/uname.rs +++ b/src/uu/uname/src/uname.rs @@ -3,8 +3,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -// last synced with: uname (GNU coreutils) 8.21 - // spell-checker:ignore (API) nodename osname sysname (options) mnrsv mnrsvo use clap::{crate_version, Arg, ArgAction, Command}; diff --git a/src/uu/unlink/src/unlink.rs b/src/uu/unlink/src/unlink.rs index 85e1ab4f5..4c9f2d829 100644 --- a/src/uu/unlink/src/unlink.rs +++ b/src/uu/unlink/src/unlink.rs @@ -3,8 +3,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -/* last synced with: unlink (GNU coreutils) 8.21 */ - use std::ffi::OsString; use std::fs::remove_file; use std::path::Path; diff --git a/src/uu/whoami/src/whoami.rs b/src/uu/whoami/src/whoami.rs index 738f7509a..294c91328 100644 --- a/src/uu/whoami/src/whoami.rs +++ b/src/uu/whoami/src/whoami.rs @@ -3,8 +3,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -/* last synced with: whoami (GNU coreutils) 8.21 */ - use std::ffi::OsString; use clap::{crate_version, Command}; diff --git a/src/uu/yes/src/yes.rs b/src/uu/yes/src/yes.rs index a58b73404..b1d8f9f49 100644 --- a/src/uu/yes/src/yes.rs +++ b/src/uu/yes/src/yes.rs @@ -3,8 +3,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -/* last synced with: yes (GNU coreutils) 8.13 */ - // cSpell:ignore strs use clap::{builder::ValueParser, crate_version, Arg, ArgAction, Command};