Carica file su 'bash'

This commit is contained in:
2022-07-07 21:49:36 +00:00
parent 5f8d90c968
commit 2c802dff7a
5 changed files with 60 additions and 0 deletions

9
bash/script2.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
touch output
i=0
while true
do
echo "Prova" $i >> output
let i++
sleep 1
done