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