Blame tests/p_coreutils/seq.sh

Alice Kaerast 2a5f48
#!/bin/bash
Alice Kaerast 2a5f48
# Author: Alice Kaerast <alice@kaerast.info>
Alice Kaerast 2a5f48
Alice Kaerast 2a5f48
t_Log "$0"
Alice Kaerast 2a5f48
seq -s " " 5 | grep -q "1 2 3 4 5" && seq -s " " 6 8 | grep -q "6 7 8" && seq -s " " 8 2 12 | grep -q "8 10 12"
Alice Kaerast 2a5f48
t_CheckExitStatus $?