4 lines
118 B
Bash
Executable File
4 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
set -xeuo pipefail
|
|
rpmspec -P ignition.spec | grep 'Source1:' | tr -s ' ' | cut -d ' ' -f 2 | xargs wget
|