Files
SolarFM/user_config/bin/solarfm
T

26 lines
500 B
Bash
Raw Normal View History

2022-07-06 23:19:41 -05:00
#!/bin/bash
# . CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
call_path=`pwd`
cd "${call_path}"
2022-07-06 23:19:41 -05:00
echo "Working Dir: " $(pwd)
2023-11-12 00:49:16 -06:00
files=()
for f in "$@"; do
target=$(readlink -f "${f}")
i="${#files[@]}"
size=$(($i + 1))
files[$size]="${target}"
done
python /opt/solarfm.zip "${files[@]}"
2022-07-06 23:19:41 -05:00
}
main "$@";