| #!/bin/bash | |
| [ -f testing.sh ] && . testing.sh | |
| #testing "name" "command" "result" "infile" "stdin" | |
| testing "uptime" "uptime | grep -q 'load average:' && echo t" "t\n" "" "" | |
| testing "uptime -s" \ | |
| "uptime -s | grep -q '^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9]$' && echo t" \ | |
| "t\n" "" "" |