7 lines
79 B
Bash
7 lines
79 B
Bash
|
#!/bin/bash
|
||
|
set -x -e
|
||
|
|
||
|
for file in *.gir; do
|
||
|
xmlstarlet ed -P -L "$file"
|
||
|
done
|