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.
18 lines
382 B
18 lines
382 B
7 months ago
|
#!/bin/bash
|
||
|
|
||
|
[ -f testing.sh ] && . testing.sh
|
||
|
|
||
|
#testing "name" "command" "result" "infile" "stdin"
|
||
|
|
||
|
cat >file1 <<EOF
|
||
|
line1
|
||
|
line2
|
||
|
EOF
|
||
|
|
||
|
# For non-tty output, headers are shown even if there's only one file.
|
||
|
testing "non-tty" "more file1 | cat -" "::::::::::::::\nfile1\n::::::::::::::\nline1\nline2\n" "" ""
|
||
|
|
||
|
testing "directory" "more ." "\n*** .: directory ***\n\n" "" ""
|
||
|
|
||
|
rm file1
|