Skip to content

Commit 0e56cf6

Browse files
committed
Create oldeditgraph
1 parent 718cb16 commit 0e56cf6

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

oldeditgraph

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
which open
3+
if [ $? == 0 ]
4+
then
5+
open https://pradeeban.github.io/DHGWorkflow/
6+
else
7+
which xdg-open
8+
if [ $? == 0 ]
9+
then
10+
xdg-open https://pradeeban.github.io/DHGWorkflow/
11+
else
12+
echo "unable to open browser for DHGWorkflow"
13+
fi
14+
fi

0 commit comments

Comments
 (0)