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