A file listing utility for linux. Provides recursive list of files and directories in TEXT, JSON or YAML format. It's written in java (Still under works) for CLI lookup.
It accepts following CLI flags:
--help
--path=<path to folder, required>
--recursive (when set, list files recursively. default is off)
--output=<json|yaml|text, default is text>
Run program to list help options :
sh filelister --help
Run program to list files recursively and print in JSON format :
sh filelister --path=/home/ --output=json --recursive
Run program to list files and print in YAML format :
sh filelister --path=/home/ --output=json
Run program to list files recursively and print in TEXT format :
sh filelister --path=/home/ --recursive