We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46331f3 commit 168f371Copy full SHA for 168f371
1 file changed
scripts/lib32-change-url.sh
@@ -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