Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
osx_ar.sh 190 B
#!/bin/bash

# wrapper for ar on OSX to prevent spurious warnings
# from ar, e.g. 'has no symbols' and 
ar $@ 2> >(ggrep -v 'has no symbols'| ggrep -v 'the table of contents is empty' >&2)