# encoding: utf-8 require 'shellwords' module Shellwords class << self def shellclean(string) shellescape(string).gsub(/\\./, '') end alias_method :clean, :shellclean end end