Skip to content

Instantly share code, notes, and snippets.

@castor4bit
Last active December 14, 2015 11:08
Show Gist options
  • Select an option

  • Save castor4bit/5077305 to your computer and use it in GitHub Desktop.

Select an option

Save castor4bit/5077305 to your computer and use it in GitHub Desktop.
Automatorで選択範囲の共有ディレクトリパスを開く
ARGF.each do |path|
path.force_encoding("UTF-8") unless path.nil?
if path =~ /^\\/
path.gsub!(%r|^\\\\|, "smb://").gsub!(%r|\\|, "/")
end
system("open #{path}")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment