-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
Implement seq #45
Comments
Hi, planning to work on this issue. Planning to do the following:
Any other advice or guidelines such as testing as well? |
Yes one advice Always drop manually everything that needs to when As for testing, I do not have something more strict because we have lots of stuff that the result depends on the running system configuration, and I have no idea how to create tests for these cases. But overall, everything that are not those cases, I would like tests cases. I usually give very descriptive names for test functions like Example: I guess that's all that I can think on top of my head Have fun with the project 😄 |
Hi @GrayJack, not sure if @FrancisMurillo is working on this. I had few hours to work on this one, please review the PR -#125 |
Just missing |
I just notice that when all 3 args are the same (1 1 1, or 2 2 2) it wont print the value With default seq seq 1 1 1 Has output of this version only exit without showing the number |
Heya, I'd like to take a crack at adding the |
Hi @GrayJack I couldn't reproduce the Running |
Hi @lynnpepin, I believe the error in the behavior was fixed on PR #154 , but the Sorry, I forgot to mention here that the issue was fixed. |
Understood! Focusing on the |
Hey @GrayJack I'm going to call it quits on implementing As it stands, a good first issue for anyone else! |
This is a tracking issue for the
seq
util.Required options and flags:
f
(long:format
)s
(long:separator
)t
(long:terminator
)w
(long:equal-width
, visible-alias:fixed-width
)Notes:
¹ : Long name not defined on other implementation of this utility. Implementer must choose a long name.
² : Short name (one letter) not defined on other implementation of this utility. Implementer must choose. a short name
References
Seq Linux
Seq FreeBSD
Seq NetBSD
Seq DragonflyBSD
Unresolved questions:
None yet
History
The
-w
and-s
were implemented by #125Open issue for
-f
: #127The text was updated successfully, but these errors were encountered: