about summary refs log blame commit diff stats
path: root/html/edit
Blame is not available for folders.
'n6' href='#n6'>6 7 8 9 10 11 12
// +build !darwin

package lib

import (
	"os/exec"
)

func OpenFile(filename string) error {
	cmd := exec.Command("xdg-open", filename)
	return cmd.Run()
}