logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/
commit: 66509f6d38509d3551adaed282e61bea00e5a7f9
parent 28b92a6bd493f0a2543ad6709f3a9f6f116ddb88
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue,  6 Jan 2026 08:17:18 +0100

cmd/realpath: replace misleading --strip alias to --no-symlinks

Diffstat:

Mcmd/realpath.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/realpath.c b/cmd/realpath.c @@ -116,8 +116,8 @@ main_realpath(int argc, char *argv[]) static struct option opts[] = { {"canonicalize-existing", no_argument, NULL, 'e'}, {"canonicalize-missing", no_argument, NULL, 'm'}, + {"no-symlinks", no_argument, NULL, 's'}, {"quiet", no_argument, NULL, 'q'}, - {"strip", no_argument, NULL, 's'}, {"zero", no_argument, NULL, 'z'}, {0, 0, 0, 0}, };