7 lines
60 B
Bash
7 lines
60 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Ignore errors from strip.
|
||
|
strip "$@"
|
||
|
|
||
|
exit 0
|