fop(1): updated copyright year and usage info

This commit is contained in:
2024-01-15 16:33:51 -07:00
parent 52def0a32d
commit 28becbafbc

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2023 Emma Tebibyte <emma@tebibyte.media> * Copyright (c) 20232024 Emma Tebibyte <emma@tebibyte.media>
* SPDX-License-Identifier: AGPL-3.0-or-later * SPDX-License-Identifier: AGPL-3.0-or-later
* *
* This program is free software: you can redistribute it and/or modify it under * This program is free software: you can redistribute it and/or modify it under
@@ -50,7 +50,7 @@ fn main() {
let command_arg = arg_parser.index() + 1; let command_arg = arg_parser.index() + 1;
argv.get(command_arg).unwrap_or_else(|| { argv.get(command_arg).unwrap_or_else(|| {
eprintln!("Usage: {} index command [args...]", argv[0]); eprintln!("Usage: {} [-d delimiter] index command [args...]", argv[0]);
exit(EX_USAGE); exit(EX_USAGE);
}); });