-
Notifications
You must be signed in to change notification settings - Fork 1
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
glitches & annoyances on freebsd #3
Comments
Ok the help() problem is this chunk at the end that does indent and word-wrap without breaking words. Line 450 in 222ade1
It prints $b with an indent prepended, up to the last $IFS before the total including indent reaches width $w. It's broken the same way on mac too. |
It's getting stuck looping forever processing the line: All that loop is doing is finding the last word seperator within 0-to-$w, printing that part, and printing the remainder on a new line, until all of $b is printed, so there are any number of other ways to accomplish that. But it's just bizarre that even cloning the entire bash behavior settings doesn't make the two behave the same. dump all settings Ubuntu
FreeBSD
And the only differences are
But even pasting the entire list right into the script didn't make it work on freebsd. |
Fixed with a4d1893 |
The text was updated successfully, but these errors were encountered: