#!/usr/bin/env ruby

require 'shellwords'

puts ARGV.map { |arg| Shellwords.shellescape(arg) }.join(' ')
