9 lines
173 B
Bash
9 lines
173 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
path="$1"
|
||
|
gravity_path="gravity/$(basename "$path" .jpg).gravity"
|
||
|
if [ -f "$gravity_path" ]; then
|
||
|
read gravity < $gravity_path
|
||
|
fi
|
||
|
echo "${gravity:-center}"
|