-
Fork this repo. Read about forking, if necessary.
-
Name your lab as "lab<3 digits in Base58".sh.
-
The first digit will identify you (the contributor).
-
Increment the last two digits as you add more labs.
-
-
Inside your script, describe the purpose of it by writing its second line using the AsciiDoc syntax.
-
This line should have the format "Purpose: <description>" as in the following example (extracted from ../lab111.sh). Please, write a description in a resumed way.
# Purpose: Testing `git merge --squash`.
-
Observe other lab validation rules in order to have your lab accepted into this project.
-
-
Commit the
lab???.sh
script inside your fork. -
Generate the ../README.adoc file by typing:
./build.sh --html
.-
If you have asciidoctor installed, this argument
--html
will also generate aindex.html
file. In this case, you can also use the argument--serve
to start aruby
httpd locally and access http://localhost:8000 to see its content:$ ./build.sh --html --serve
The ruby httpd
server will be running in background.
To terminate it, type:kill $(cat httpd.pid)
.
-