We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Environment: Microsoft Windows [Version 10.0.19045.5247] Installation: winget install uutils.coreutils Installer Url: https://github.com/uutils/coreutils/releases/download/0.0.28/coreutils-0.0.28-x86_64-pc-windows-msvc.zip
Steps to reproduce:
seq 15 | coreutils paste -sd ","
What happens now: visible output shows
,15
but if i do seq 15 | coreutils paste -sd ","|clip the output become
seq 15 | coreutils paste -sd ","|clip
1 ,2 ,3 ,4 ,5 ,6 ,7 ,8 ,9 ,10 ,11 ,12 ,13 ,14 ,15
What I expected to happen: it should appear as 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
Note:
coreutils seq 15 | coreutils paste -sd ","
seq --version
seq (GNU sh-utils) 1.13
coreutils seq
dir *.exe/b | coreutils paste -sd ","
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment: Microsoft Windows [Version 10.0.19045.5247]
Installation: winget install uutils.coreutils
Installer Url: https://github.com/uutils/coreutils/releases/download/0.0.28/coreutils-0.0.28-x86_64-pc-windows-msvc.zip
Steps to reproduce:
seq 15 | coreutils paste -sd ","
What happens now: visible output shows
,15
but if i do
seq 15 | coreutils paste -sd ","|clip
the output becomeWhat I expected to happen: it should appear as
1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
Note:
coreutils seq 15 | coreutils paste -sd ","
give me the correct output1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
seq --version
:seq (GNU sh-utils) 1.13
it s notcoreutils seq
dir *.exe/b | coreutils paste -sd ","
doesnt give proper outputThe text was updated successfully, but these errors were encountered: