-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
Description
GNU ptx doesn't show any output if the input is numeric whereas uutils ptx shows some output.
$ printf "123" | ptx
$ echo $?
0
$ printf "1 2 3" | ptx
$ echo $?
0
$ printf "123" | cargo run -q ptx
123
$ printf "1 2 3" | cargo run -q ptx
1 2 3
1 2 3
1 2 3
Reactions are currently unavailable