상태별로 걸러낸 콘텐츠 파일 목록을 출력합니다.
# 모든 콘텐츠 파일 나열 hwaro tool list all # 초안 파일만 나열 hwaro tool list drafts # 발행된 파일만 나열 hwaro tool list published # 특정 디렉터리의 파일 나열 hwaro tool list all -c posts # 결과를 JSON으로 출력 hwaro tool list all --json
draft = true
draft = false
[ { "path": "content/blog/my-post.md", "title": "My Post", "draft": false, "date": "2024-06-15T00:00:00+00:00" }, { "path": "content/blog/draft-post.md", "title": "Draft Post", "draft": true, "date": "2024-06-10T00:00:00+00:00" } ]