diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-22 14:52:57 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-22 14:52:57 +0200 |
commit | 1bb83f18cd5bf5a739f60141e62b63c2e9ba6036 (patch) | |
tree | 16691382ae72eea4647cc017fadb5d66e361dd92 /bin/common/fhome | |
parent | bf2756fbb5db8ff2bd248ab5a528c31304263db2 (diff) |
changed fhome to goo
Diffstat (limited to 'bin/common/fhome')
-rwxr-xr-x | bin/common/fhome | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/bin/common/fhome b/bin/common/fhome deleted file mode 100755 index 442f25c..0000000 --- a/bin/common/fhome +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -exclude=" -.cache -.mozilla -.npm -.git -site-packages -objects -instances -discord -Steam -?eclipse -VisualParadigm -intellij -arduino15" - -for dir in $exclude; do - dirs="$dirs -name \"$dir\" -o " -done -cmd="find ${2:-$HOME} \(${dirs} -false \) -prune -o -type ${1:-f} -print" - -eval "$cmd" 2>/dev/null |