You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
463 B
19 lines
463 B
#!/bin/bash
|
|
# Author: Alice Kaerast <alice@kaerast.info>
|
|
|
|
t_Log "$0 - test wc output"
|
|
|
|
cat << EOF > /var/tmp/wc-test
|
|
1 2
|
|
3 4
|
|
5 6
|
|
EOF
|
|
|
|
# file should have 3 lines, 12 bytes, 12 characters, max line length of 3, and 6 words
|
|
wc -l /var/tmp/wc-test | grep -q 3 && wc -c /var/tmp/wc-test | grep -q 12 && wc -m /var/tmp/wc-test | grep -q 12 && wc -L /var/tmp/wc-test | grep -q 3 && wc -w /var/tmp/wc-test | grep -q 6
|
|
|
|
t_CheckExitStatus $?
|
|
|
|
# Cleanup
|
|
rm /var/tmp/wc-test
|