mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 20:19:19 +00:00
7 lines
123 B
Bash
Executable File
7 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
export LANG=C LC_ALL=C # Suppress localication
|
|
exec 2> >(exec grep -v \
|
|
-e ' no symbols$' \
|
|
>&2)
|
|
exec "$@"
|