mirror of
http://git.davidovski.xyz/shblg.git
synced 2024-08-15 00:43:48 +00:00
8 lines
181 B
Bash
Executable file
8 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# installs m2html and shblg to the system path
|
|
|
|
PREFIX=${PREFIX:-/usr}
|
|
|
|
install -m755 src/md2html.sh ${PREFIX}/bin/md2html
|
|
install -m755 src/shblg.sh ${PREFIX}/bin/shblg
|