Skip to content

Commit 168f371

Browse files
committed
Prep for lib32-currency
1 parent 46331f3 commit 168f371

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

scripts/lib32-change-url.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
for i in $(find -maxdepth 1 -type f | sed 's!.*/!!' | sed 's/lib32-//g'); do
3+
if [[ -f ../$i ]]; then
4+
LINES=$(cat ../$i | grep '\S' | head -n6)
5+
cat lib32-$i | tail -n +6
6+
7+
elif [[ -f ../base/$i ]]; then
8+
LINES=$(cat ../base/$i | grep '\S' | head -n8)
9+
cat lib32-$i | tail -n +8
10+
fi
11+
12+
done

0 commit comments

Comments
 (0)