Initial commit.

This commit is contained in:
Johannes Findeisen 2024-02-07 09:27:22 +01:00
commit 317e1b4e10
13 changed files with 260 additions and 0 deletions

13
bash/bash.sh Executable file
View file

@ -0,0 +1,13 @@
---
permalink: /cgi/bash/index.sh
---
echo "Hello from bash!"
echo
echo 'date'
date
echo
echo 'for i in $(seq 1 10); do echo $i; done'
for i in $(seq 1 10); do echo $i; done