toaruos/util/disk_size.sh
2014-02-26 20:58:33 -08:00

10 lines
156 B
Bash
Executable File

#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ -f "$DIR/../.disk_size" ]; then
cat "$DIR/../.disk_size"
else
echo "524288"
fi