summarylogtreecommitdiffstats
path: root/open.sh
blob: 17ef9ade46086842fd797acfbfc6f6cb084a408e (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

if [[ $@ =~ '--show-item' ]]; then
	file=$(echo "$@" | cut -c 13-)
	xdg-open $(dirname "${file}")
else
	xdg-open $@
fi