mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-12-12 18:00:54 +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
|
||
|
|