Made script indepented from former framework

This commit is contained in:
Kevin Veen-Birkenbach 2021-12-08 12:41:48 +01:00
parent 40fe788f49
commit ae7f1499ad
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
#!/bin/bash
# @author Kevin Veen-Birkenbach
# shellcheck source=/dev/null # Deactivate SC1090
source "$(dirname "$(readlink -f "${0}")")/../../base.sh" || (echo "Loading base.sh failed." && exit 1)
info "Searching for files which are in \"$HOME\" and bigger then 100MB..."
echo "Searching for files which are in \"$HOME\" and bigger then 100MB..."
find ~ -type f -size +100M -exec ls -lh {} \;