Created
June 3, 2022 15:43
-
-
Save haeramkeem/c248f902dfcf42638138785a1765c59e to your computer and use it in GitHub Desktop.
ls recursive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://www.cyberciti.biz/faq/how-to-show-recursive-directory-listing-on-linux-or-unix/ | |
# show filename only | |
ls -R | |
# show file structure | |
find . -print |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment