mirror of
https://github.com/SRI-CSL/gllvm
synced 2026-06-08 12:28:35 +00: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 |