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
If applicable please provide a direct link to the challenge, example: https://cmdchallenge.com/#/just_the_files
ls -A -F -R | grep -v ":" | grep -v "/"
README beatae.flac error.doc libero.xls necessitatibus.doc totam animi.doc corporis.xls odit.doc
find . -type f -printf '%f\n'
error.doc corporis.xls odit.doc animi.doc necessitatibus.doc totam beatae.flac README libero.xls
The text was updated successfully, but these errors were encountered:
Thanks for the bug report, it looks like this command outputs the following when run on the linux host:
# ls -A -F -R | grep -v ":" | grep -v "/" README beatae.flac error.doc libero.xls necessitatibus.doc totam animi.doc corporis.xls odit.doc
The extra blank lines are causing it not to match and not being displayed properly on the jquery terminal.
Sorry, something went wrong.
strict
No branches or pull requests
Steps to reproduce
If applicable please provide a direct link to the challenge, example: https://cmdchallenge.com/#/just_the_files
=================================================
This is a valid solution but output is not sorted as expected by the website:
ls -A -F -R | grep -v ":" | grep -v "/"
README
beatae.flac
error.doc
libero.xls
necessitatibus.doc
totam
animi.doc
corporis.xls
odit.doc
==========================================
this solution was accepted:
find . -type f -printf '%f\n'
error.doc
corporis.xls
odit.doc
animi.doc
necessitatibus.doc
totam
beatae.flac
README
libero.xls
The text was updated successfully, but these errors were encountered: