mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 21:14:23 +02:00
5 lines
76 B
Bash
Executable file
5 lines
76 B
Bash
Executable file
#!/bin/bash
|
|
exec 2> >(exec grep -v \
|
|
-e ' no symbols$' \
|
|
>&2)
|
|
exec "$@"
|