add optional name argument to make-link script

This commit is contained in:
gnat 2024-10-06 06:13:48 -07:00
parent a6e4056d57
commit d66d449d60

View File

@ -1 +1,5 @@
echo "<a href='$1'>$1</a>" if [ -z "${2}" ]; then
echo "<a href='$1'>$1</a>"
else
echo "<a href='$1'>$2</a>"
fi