Files
inutility_scripts/recursive.sh
Andrew a6b58f4d9d [recursive.sh]: add recursive.sh
A script that calls itself
2024-08-08 23:36:54 +01:00

7 lines
133 B
Bash
Executable File

#!/bin/sh
# A script that calls itself
recursion_count=${1:-0}
echo "Recursion number $recursion_count"
$0 $((recursion_count + 1))