summaryrefslogtreecommitdiff
path: root/utils/file2base
blob: 2fee68035a3a6a7b143c048f1c5c67d5693be763 (plain)
1
2
3
4
5
6
#!/usr/bin/env bash

for file in "$@"; do
	IFS=/ read -r type url extra <<<"$file"
	echo "${type}/${url}"
done