From b3e85f167545dca3e3c49a85758aef061f58c6e9 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Tue, 10 Dec 2019 13:02:16 +0300 Subject: [PATCH] Omit error messages --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b77584e..abd3e66 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ rmdir: rmdir $(path) 2>&-; : install: mkdir - gfind . -maxdepth 1 -type f -executable -exec basename {} \; | while read -r line; do ln -s $$(realpath $$line) $(path)/$$line; done + gfind . -maxdepth 1 -type f -executable -exec basename {} \; | while read -r line; do ln -s $$(realpath $$line) $(path)/$$line 2>&-; done; true rmlinks: gfind . -maxdepth 1 -type f -executable -exec basename {} \; | xargs -IF rm -fv $(path)/F