Tutorial Dateien.

This commit is contained in:
2026-04-05 12:23:06 +02:00
parent 01372ed6dd
commit 23d29820b4
4 changed files with 113 additions and 0 deletions

9
teil28/automkdir.sh Normal file
View File

@@ -0,0 +1,9 @@
#! /usr/bin/bash
automkdir() {
if mkdir "${1}" ; then
cd "${1}"
fi
}