summaryrefslogtreecommitdiff
path: root/bin/np
blob: e53c83d0084910cee1ba1b0739a5da77e61c37be (plain)
1
2
3
4
5
6
7
8
9
!#/usr/bin/bash

if [ $# -eq 0 ]; then
    echo "Please specify a file to open."
else
    args="$(cygpath -w $@)"
    /path/to/notepad++.exe $args
fi