6 lines
58 B
Bash
Executable file
6 lines
58 B
Bash
Executable file
#!/bin/minishell
|
|
|
|
while [ 1 ]; do
|
|
sleep 1
|
|
echo "a"
|
|
done
|