10 lines
159 B
Bash
10 lines
159 B
Bash
#!/bin/bash
|
|
|
|
## test run sample apply
|
|
|
|
Apply 0 1 "Test true" [[ -f /etc/passwd ]]
|
|
Apply 0 2 "Test false" [[ -f /etc/nofile ]]
|
|
Apply 0 3 "Test" [[ -d /etc ]]
|
|
|
|
|