protocol_fetch() {
	FILE="${1#file://*}"
	if [ ! -e "$FILE" ] || ! cp "$FILE" $2; then
		return 1
	else
		return 0
	fi
}
