mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-25 19:02:37 +00:00
9282525be0
Should also add before (for first provider), not only after.
11 lines
242 B
Bash
Executable File
11 lines
242 B
Bash
Executable File
#!/bin/sh
|
|
PATTERN="fastlane/metadata/*/description.txt"
|
|
AFTER=$1
|
|
NAME=$2
|
|
DELIMITER="†"
|
|
|
|
for FILE in `ls $PATTERN`; do
|
|
sed -E "s/${AFTER}/${AFTER}${DELIMITER}- ${NAME}/g" $FILE | tr $DELIMITER '\n' >$FILE.tmp
|
|
mv $FILE.tmp $FILE
|
|
done
|