3 lines
263 B
Bash
Executable file
3 lines
263 B
Bash
Executable file
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
for F in *.xml; do sed -i "s/TrustAnchor id=\"[^\"]*\"/TrustAnchor id=\"$(uuidgen | tr '[[:lower:]]' '[[:upper:]]')\"/" $F; done
|
|
for F in *.xml; do sed -i "s#source=\"[^\"]*\"#source=\"https://localhost/$F\"#" $F; done
|