diff options
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 |