mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-12-01 20:43:12 +01:00
10 lines
171 B
Bash
10 lines
171 B
Bash
#!/bin/bash
|
|
|
|
SPEC=$1
|
|
|
|
SOURCES=`grep -i "^SOURCE\d\+\s*:\s*\([fht]\+tp://.*\)" ${SPEC} | sed -e 's/^.*:[[:space:]]//'`
|
|
for URL in ${SOURCES} ; do
|
|
curl -OL ${URL}
|
|
done
|
|
|