To write that safely, you'd test for the result of mkdir and cd to return success before deleting.
In a shell, you'd just go
mkdir /foo -m 0700 && cd /foo && ${deleteallfiles}
To write that safely, you'd test for the result of mkdir and cd to return success before deleting.
In a shell, you'd just go