20 lines
637 B
HTML
20 lines
637 B
HTML
<INJECT>cat $HOME/template/header.html | sed "s/__PAGE TITLE__/Build Scripts/"</INJECT>
|
|
|
|
<h1>Build Scripts</h1>
|
|
<div>
|
|
<p>
|
|
Folder keeping build script helpers(for running using my injector).
|
|
<br>
|
|
For example: a python script
|
|
(yes i know i hate python but its v quick for simple stuff)
|
|
to transform input from <code>ls</code> into a list of <a> tags(with space between)
|
|
</p>
|
|
<p>
|
|
here is the list of files here:
|
|
<br>
|
|
<INJECT>cd $CURRENT && ls *.* | python3 $HOME/bscripts/ls_to_a.py</INJECT>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<INJECT>cat $HOME/template/footer.html</INJECT>
|