Skip to content

Instantly share code, notes, and snippets.

@haeramkeem
Created June 3, 2022 15:43
Show Gist options
  • Save haeramkeem/c248f902dfcf42638138785a1765c59e to your computer and use it in GitHub Desktop.
Save haeramkeem/c248f902dfcf42638138785a1765c59e to your computer and use it in GitHub Desktop.
ls recursive
#!/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