aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment/output.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-06-13 12:04:35 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-06-13 12:04:35 -0400
commit3cc86927c990f85326d4b6f6b8b9d8ee9d8613e5 (patch)
tree10aa4fa9e2827a08df2441b1442f40aeba4a6855 /test/environment/output.sh
parentconfigure.ac fixes (diff)
downloadfirejail-3cc86927c990f85326d4b6f6b8b9d8ee9d8613e5.tar.gz
firejail-3cc86927c990f85326d4b6f6b8b9d8ee9d8613e5.tar.zst
firejail-3cc86927c990f85326d4b6f6b8b9d8ee9d8613e5.zip
testing
Diffstat (limited to 'test/environment/output.sh')
-rwxr-xr-xtest/environment/output.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/environment/output.sh b/test/environment/output.sh
new file mode 100755
index 000000000..2be188e3a
--- /dev/null
+++ b/test/environment/output.sh
@@ -0,0 +1,9 @@
1#!/bin/bash
2
3i="0"
4
5while [ $i -lt 150000 ]
6do
7 echo message number $i
8 i=$[$i+1]
9done