From 6737d1ca15818cffd080431ab820c3fc6a79f63f Mon Sep 17 00:00:00 2001 From: Sam Hardeman Date: Mon, 30 Mar 2026 01:50:27 +0200 Subject: [PATCH] Removed redundant .sh file --- check.sh | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100755 check.sh diff --git a/check.sh b/check.sh deleted file mode 100755 index d5d62d9..0000000 --- a/check.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env bash -# Lackadaisical Dependency Checker - -echo "Checking dependencies for LACKADAISICAL..." -echo "==========================================" - -check_bin() -{ - if [[ $1 ]]; - then echo -e "[ \e[32mOK\e[0m ] $1 ($2)" - return 0 - else - echo -e "[ \e[31m--\e[0m ] $1 ($2)" - return 1 - fi -} - -echo "--- Core (Essential) ---" -check_bin bash "Shell environment" -check_bin awk "Text processing" -check_bin sed "Stream editing" -check_bin grep "Pattern matching" -check_bin base64 "Data encoding" -check_bin realpath "Path resolution" - -echo -e "\n--- Enhanced UI & Navigation ---" -check_bin fzf "Used by cdf" -check_bin peco "Used by cdp, editpeco" -check_bin tree "Used by cdp, editpeco, daisy_enc_folder" -check_bin dialog "Used by ched" - -echo -e "\n--- Archives & Filesystems ---" -check_bin archivemount "Used by cdz (mounting)" -check_bin tar "Used by cdz (extraction)" -check_bin unzip "Used by cdz (extraction)" -check_bin unrar "Used by cdz (extraction)" -check_bin mksquashfs "Used by squasher make" -check_bin rsync "Used by squasher destroy" -check_bin sshfs "Used by sshp" -check_bin fusermount "Used by sshp, cdz" - -echo -e "\n--- System ---" -check_bin sudo "Privilege escalation" -check_bin systemctl "Service management" -check_bin perl "Advanced error reporting" - -echo "==========================================" -echo "Check complete."