This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/pkg/challenge/passwd.sh

11 lines
124 B
Bash
Executable File

#!/bin/sh
/usr/bin/passwd && {
for i in $(seq 30)
do
echo -n .
sleep 0.4
done
echo " OK"
}