Skip to content
Snippets Groups Projects
Commit a7c81d6f authored by GATEAU Thibault's avatar GATEAU Thibault
Browse files

[bash] adding loading env file

parent cd5b23db
Branches
No related tags found
No related merge requests found
#!/bin/bash
HTN_PATH=$(pwd)
#HyperTensioN execution command:
function plan {
ruby ${HTN_PATH}/HyperTensioN/Hype.rb $1 $2 $3
}
alias plan='plan'
#Ruby dot:
function planviz {
plan $1 $2 dot
dot -Tpdf "$1".dot > "$1".pdf &&
evince "$1".pdf &
}
alias planviz='planviz'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment