DEBSOURCES
Skip Quicknav
sources / ruby-tty-command / 0.10.1-1 / spec / fixtures / color
12345678
#!/usr/bin/env ruby # frozen_string_literal: true out = "colored" if $stdout.tty? out = "\e[32m#{out}\e[0m" end puts "#{out}\n"