10 lines
156 B
Bash
Executable File
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
|