mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
Some more tests for cut. Craig Matsuura said he saw some problems along these
lines. "Works for me", but we'll keep these tests around for regression.
This commit is contained in:
parent
bff6b18bf9
commit
cc7b4f39fc
@ -43,7 +43,13 @@ cat tester.sh
|
||||
|
||||
# cut
|
||||
echo "1234" | cut -c1
|
||||
echo "1234" | cut -c 1
|
||||
echo "1234567890" | cut -c2-7
|
||||
echo "1234567890" | cut -c 2-7
|
||||
echo "f1 f2" | cut -f2
|
||||
echo "f1 f2" | cut -f 2
|
||||
echo "f1 f2 f3 f4 f5" | cut -f2-4
|
||||
echo "f1 f2 f3 f4 f5" | cut -f 2-4
|
||||
|
||||
# date
|
||||
date
|
||||
|
Loading…
Reference in New Issue
Block a user