diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-24 20:09:53 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-24 20:09:53 +0200 |
commit | c8ff35fa5b6549bf469e643fe238c440eb10f8f2 (patch) | |
tree | d3d3e738b4dc254118ed3cabfc77e5772f1534df /bin/common/goo | |
parent | ed2c13e049f8bbc787a406aba4e023e5edfe792e (diff) | |
parent | 2279a765fb2c9b15792ab9e33454091071fc004a (diff) |
Merge branch 'main' of gdb:dotfiles
Diffstat (limited to 'bin/common/goo')
-rwxr-xr-x | bin/common/goo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/common/goo b/bin/common/goo index 442f25c..cfd03ec 100755 --- a/bin/common/goo +++ b/bin/common/goo @@ -18,6 +18,6 @@ arduino15" for dir in $exclude; do dirs="$dirs -name \"$dir\" -o " done -cmd="find ${2:-$HOME} \(${dirs} -false \) -prune -o -type ${1:-f} -print" +cmd="find ${2:-$HOME} \(${dirs} -false \) -prune -o -type ${1:-f} -mindepth 1 -print" eval "$cmd" 2>/dev/null |