You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: level05/resources/How.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ for i in /opt/openarenaserver/* ; do
23
23
rm -f "$i"
24
24
done
25
25
```
26
-
It's a script bash. This script loop over everything in the directory. `ulimit -t 5` gives a limit of 5 seconds of CPU time. `bash -x "$i"` execute **$i** and the **-x** print the command in the standard error output. After the execution of a file, it's deleted.
26
+
It's a script bash. This script loop over everything in the directory. `ulimit -t 5` gives a limit of 5 seconds of CPU time. `bash -x "$i"` execute **$i** and the **-x** print the command in the standard error output. After the execution of a file, this one is deleted.
27
27
28
28
So the idea is to write a script that will be store in `/opt/openarenaserver/` and executed by the script just above.
0 commit comments