aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fs_ls.sh
blob: c7deb40410ce1db4da5314a2fbff197f125ede31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
set -e

# @describe List all files and directories at the specified path.

# @option --path! The path of the directory to list

main() {
    ls -1 "$argc_path" >> "$LLM_OUTPUT"
}

eval "$(argc --argc-eval "$0" "$@")"