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

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