We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a160bc commit 751840aCopy full SHA for 751840a
tests/tests.bats
@@ -22,8 +22,8 @@ setup() {
22
sudo ip netns exec SouthNS ping -c 2 1.1.1.1
23
24
# Create file with random data
25
- cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 128 | head -n 1 > /tmp/test_short.log
26
- cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 8128 | head -n 1 > /tmp/test_long.log
+ cat /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c 128 | head -n 1 > /tmp/test_short.log
+ cat /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c 8128 | head -n 1 > /tmp/test_long.log
27
}
28
29
teardown() {
0 commit comments