#!/usr/bin/perl -lp
#
# small tool useful for convert uri's like "Vídeos" to "V%C3%ADdeos", good for .gtk-bookmarks for example

use URI::Escape;

# this version ignores the slashes:
s{([^/]+)}{uri_unescape($1)}ge

# and this version converts slashes too (not wanted)
#$_ = uri_unescape($_)
