From d8574278038e3d372d0b58126490eaef32c19da4 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 28 Nov 2019 18:56:09 +0000 Subject: [PATCH] pash: fix bugs in list --- pash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pash b/pash index f333710..b40e630 100755 --- a/pash +++ b/pash @@ -69,8 +69,10 @@ pw_copy() { pw_list() { if hash tree 2>/dev/null; then tree --noreport + else - find . -mindepth 1 + set +f + find -- * -type f fi }