echo ABCDE | teip -c '1,3,$-1' => [A]B[C][D]E `$-1` supposed to be 4, because `$` means the number of field. Instead of `-`, `..` is used for specifying the range. `1..3` => `1,2,3`
echo ABCDE | teip -c '1,3,$-1'
=> [A]B[C][D]E
$-1supposed to be 4, because$means the number of field.Instead of
-,..is used for specifying the range.1..3=>1,2,3