From f4514592bd99b67d891100c254faa814242f3fd2 Mon Sep 17 00:00:00 2001 From: DTB Date: Tue, 23 Jul 2024 18:07:59 -0600 Subject: [PATCH] pschdir(1): license --- src/pschdir.c | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/pschdir.c b/src/pschdir.c index 4088d92..44ea573 100644 --- a/src/pschdir.c +++ b/src/pschdir.c @@ -1,3 +1,21 @@ +/* + * Copyright (c) 2024 DTB + * SPDX-License-Identifier: AGPL-3.0-or-later + * + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU Affero General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) any + * later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more + * details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see https://www.gnu.org/licenses/. + */ + #include /* EACCESS, ELOOP, ENAMETOOLONG, ENOENT, ENOTDIR, errno */ #include /* fprintf(3), stderr */ #include /* strerror(3) */ @@ -9,7 +27,7 @@ char *program_name = "pschdir"; int main(int argc, char *argv[]){ if (argc < 3) { - fprintf(stderr, "Usage: %s [directory] [command (argument...)]\n", + fprintf(stderr, "Usage: %s directory command [argument...]\n", argv[0] == NULL ? program_name : argv[0]); return EX_USAGE; }