summaryrefslogtreecommitdiff
path: root/utils/file2base
blob: 17951e0019895f225e0ef21f780a4f21065eeb52 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

IFS=/ read -r type url extra <<<"$*"
case "$type" in
	git) :;;
	svn) :;;
	tar) url=${url}/${extra};;
esac
echo "${type}/${url}"