This repository has been archived on 2024-03-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
adlin/pkg/challenge/passwd.sh

10 lines
124 B
Bash
Executable file

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