gdritter repos GRUtils / master scripts / ff-here
master

Tree @master (Download .tar.gz)

ff-here @masterraw · history · blame

1
2
3
4
5
6
7
#!/bin/bash

if [[ "$1" = /* ]]; then
	firefox file://$1
else
	firefox file://$(pwd)/$1
fi