mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 05:29:10 +02:00
6 lines
123 B
Bash
Executable file
6 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 "$@"
|