diff --git a/Userland/Utilities/touch.cpp b/Userland/Utilities/touch.cpp index f8aa7ca1b7..5b5ba74fc1 100644 --- a/Userland/Utilities/touch.cpp +++ b/Userland/Utilities/touch.cpp @@ -39,6 +39,7 @@ int main(int argc, char** argv) Core::ArgsParser args_parser; args_parser.set_general_help("Create a file, or update its mtime (time of last modification)."); + args_parser.add_ignored(nullptr, 'f'); args_parser.add_positional_argument(paths, "Files to touch", "path", Core::ArgsParser::Required::Yes); args_parser.parse(argc, argv);