Update
This can be done. See kaluy's answer for the simplest way.
Original Answer
It seems the answer is "you can't". Any descriptors created in a script don't apply to the shell which called the script.
I figured out how to do it using ruby though, if anyone is interested. See also the update using perl.
begin
out = IO.new(3, 'w')
rescue Errno::EBADF, ArgumentError
out = File.open('/dev/tty', 'w')
end
p out.fileno
out.puts "hello world"
Note that this obviously won't work in a daemon - it's not connected to a terminal.
UPDATE
If ruby isn't your thing, you can simply call a bash script from the ruby script. You'll need the open4 gem/library for reliable piping of output:
require 'open4'
# ... insert begin/rescue/end block from above
Open4.spawn('./out.sh', :out => out)
UPDATE 2
Here's a way using a bit of perl and mostly bash. You must make sure perl is working properly on your system, because a missing perl executable will also return a non-zero exit code.
perl -e 'open(TMPOUT, ">&3") or die' 2>/dev/null
if [[ $? != 0 ]]; then
echo "fd 3 wasn't open"
exec 3>/dev/tty
else
echo "fd 3 was open"
fi
echo foo1
echo foo2 >&2
echo foo3 >&3