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
ls -w
This option does the following:
-w, --width=COLS set output width to COLS. 0 means no limit
$ ls -w8 > /dev/null; echo $? 0 $ ls -w08; echo $? ls: invalid line width: '08' 2 $ ./target/debug/coreutils ls -w08 > /dev/null; echo $? 0
Tested by GNU here: https://github.com/coreutils/coreutils/blob/master/tests/ls/w-option.sh#L30=
The text was updated successfully, but these errors were encountered:
Fixed by @Ganneff
Sorry, something went wrong.
No branches or pull requests
This option does the following:
Tested by GNU here:
https://github.com/coreutils/coreutils/blob/master/tests/ls/w-option.sh#L30=
The text was updated successfully, but these errors were encountered: