All pastes #2054212 Raw Edit

Conver windows smb share url to

public shellscript v1 · immutable
#2054212 ·published 2011-05-05 13:28 UTC
rendered paste body
#!/bin/bash# Transform \\windows\smb\share\url\ to smb://windows/share/url/# in place in X clipboard.# Needs xclip, which is not installed by default on some systems.cpboard=`xclip -selection clipboard -o | tr -d '\n'`reversed_slashes=`echo -n $cpboard | sed 's/\\\/\\//g'`echo -n smb:$reversed_slashes | xclip -selection clipboard