7 lines
69 B
Bash
7 lines
69 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
while :
|
||
|
do
|
||
|
find / -type f -print > /dev/null 2>&1
|
||
|
done
|