mirror of
https://github.com/danog/gllvm.git
synced 2024-12-02 13:27:48 +01:00
4 lines
73 B
Bash
4 lines
73 B
Bash
|
#!/bin/bash
|
||
|
for lib in $*;
|
||
|
do ar -t $lib |xargs ar rvs $lib.new;
|
||
|
done
|