Skip to content
Permalink
Tree: 20ab277e64
Find file Copy path
Find file Copy path
1 contributor

Users who have contributed to this file

13 lines (9 sloc) 275 Bytes
#!/usr/bin/env bash
# Delete first 22 characters (ide://open?url=file://)
request=${1:22}
# Decode URL
request=$(echo $request | echo -e "$(sed 's/+/ /g; s/%/\\x/g')")
# Replace &line= with :
request=${request/&line=/:}
# Launch Starfish
/usr/bin/starfish -g -r $request
You can’t perform that action at this time.