diff options
author | EuAndreh <eu@euandre.org> | 2025-05-22 10:58:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-22 10:58:59 -0300 |
commit | f97c9fd4a7258774f957405efcbba18040cf1269 (patch) | |
tree | 4ac2087a5839942040446e38dbf1c866c2cbf67c | |
parent | git mv src/uuid src/uuidx (diff) | |
download | eut-f97c9fd4a7258774f957405efcbba18040cf1269.tar.gz eut-f97c9fd4a7258774f957405efcbba18040cf1269.tar.xz |
src/instool: Ignore error messages when listing man_dirnames()
-rwxr-xr-x | src/instool | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/instool b/src/instool index 4b4db66..495bd41 100755 --- a/src/instool +++ b/src/instool @@ -47,7 +47,7 @@ mkdirs() { } man_dirnames() { - find -- "$@" | xargs -I% basename % | + find -- "$@" 2>/dev/null | xargs -I% basename % | sed 's|^\(.*\)\.\([a-z][a-z]\)\.\(.*\)$|\2/man\3|' } |