huangcm
2024-12-18 9d29be7f7249789d6ffd0440067187a9f040c2cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
 
[ -f testing.sh ] && . testing.sh
 
#testing "name" "command" "result" "infile" "stdin"
 
BIGTEST="one\ntwo\nthree\nfour\nfive\nsix\nseven\neight\nnine\nten\neleven\n"
echo -ne "$BIGTEST" > file1
testing "tail" "tail && echo yes" "oneyes\n" "" "one"
testing "file" "tail file1" \
   "two\nthree\nfour\nfive\nsix\nseven\neight\nnine\nten\neleven\n" "" ""
testing "-n in bounds" "tail -n 3 file1" "nine\nten\neleven\n" "" ""
testing "-n out of bounds" "tail -n 999 file1" "$BIGTEST" "" ""
testing "-n+ in bounds" "tail -n +3 file1" \
   "three\nfour\nfive\nsix\nseven\neight\nnine\nten\neleven\n" "" ""
testing "-n+ outof bounds" "tail -n +999 file1" "" "" ""
testing "-c in bounds" "tail -c 27 file1" \
   "even\neight\nnine\nten\neleven\n" "" ""
testing "-c out of bounds" "tail -c 999 file1" "$BIGTEST" "" ""
testing "-c+ in bounds" "tail -c +27 file1" \
   "x\nseven\neight\nnine\nten\neleven\n" "" ""
testing "-c+ out of bonds" "tail -c +999 file1" "" "" ""
testing "-N" "tail -1 file1" "eleven\n" "" ""
rm file1
 
testing "stdin no trailing newline" "tail -n 1 - " "c" "" "a\nb\nc"
testing "file no trailing newline" "tail -n 1 input" "c" "a\nb\nc" ""
 
optional TAIL_SEEK
testing "noseek -n in bounds" "tail -n 3" "nine\nten\neleven\n" \
   "" "$BIGTEST"
testing "noseek -n out of bounds" "tail -n 999" "$BIGTEST" "" "$BIGTEST"
testing "noseek -n+ in bounds" "tail -n +3" \
   "three\nfour\nfive\nsix\nseven\neight\nnine\nten\neleven\n" "" \
   "$BIGTEST"
testing "noseek -n+ outof bounds" "tail -n +999" "" "" "$BIGTEST"
testing "noseek -c in bounds" "tail -c 27" \
   "even\neight\nnine\nten\neleven\n" "" "$BIGTEST"
testing "noseek -c out of bounds" "tail -c 999" "$BIGTEST" "" "$BIGTEST"
testing "noseek -c+ in bounds" "tail -c +27" \
   "x\nseven\neight\nnine\nten\neleven\n" "" "$BIGTEST"
testing "noseek -c+ out of bonds" "tail -c +999" "" "" "$BIGTEST"
 
makebigfile()
{
  for j in $(seq 1 100)
  do
    echo -n "$j "
    for i in $(seq 1 100)
    do
      echo -n 123456789abcefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    done
    echo
  done
}
makebigfile > bigfile
 
testing "-c 12345 -n 3 bigfile" "tail -c 12345 -n 3 bigfile | md5sum" \
  "347bbdcbad8a313f4dc7bd558c5bfcb8  -\n" "" ""
testing "-n 3 -c 12345 bigfile" "tail -n 3 -c 12345 bigfile | md5sum" \
  "1698825a750288284ec3ba7d8a59f302  -\n" "" ""
rm bigfile
 
echo 111 > one
testing "-f one" \
  'tail -f one & sleep .25 ; echo two >> one; sleep .25; echo three >> one; sleep .25; kill $! >/dev/null' \
  "111\ntwo\nthree\n" "" ""
rm one
 
echo uno > one
echo dos > two
echo tres > three
testing "-f one two three" \
  'tail -f one two three & sleep .25 ; echo more >> three ; echo also >> one; sleep .25; kill $! >/dev/null' \
  "==> one <==\nuno\n\n==> two <==\ndos\n\n==> three <==\ntres\nmore\n\n==> one <==\nalso\n" "" ""
rm one two three