Last active
December 14, 2015 11:09
-
-
Save castor4bit/5077299 to your computer and use it in GitHub Desktop.
Automatorで選択範囲の共有ディレクトリパスを、Windows/Macそれぞれに変換して出力
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ARGF.each do |path| | |
| path.force_encoding("UTF-8") unless path.nil? | |
| puts path | |
| if path =~ /^smb:/ | |
| puts path.gsub(%r|^smb://|, "\\\\\\").gsub(%r|/|, "\\") | |
| else | |
| puts "smb:#{path.gsub("\\", "/")}" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment