Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.3 KB

File metadata and controls

59 lines (39 loc) · 1.3 KB

List Command

List the assets in a set. Only cached assets will be listed.

If an asset is requested using ID, and the asset isn't cached, it will not be shown.

Assets that appear multiple times in the set, will only be listed once.

The list is sorted alphabetical.

fileset <store> ls

Use fileset (see fileset for more info):

fileset <store> ls [-s/--set <fileset.yml>] ...

If a FileSet.yml file exists in the current working directory, it will be applied, unless --set <fileset.yml> is used.

To show uncached (missing) assets, run:

fileset <store> ls --missing

To show filenames as they exist in the cache instead of the IDs, run:

fileset <store> ls --filename

To list a subset of the set, specify one or more paths:

fileset <store> ls path/in/set ...

To list a specific asset ID from the cache, within the set, specify one or more IDs:

fileset <store> ls ID ...

To list a specific asset ID from the cache without or outside current set-definition, use the ls+ (ls plus command), and specify one or more IDs:

fileset <store> ls+ ID ...

Running ls+ without specifying an ID will list all assets in the cache.

ls+ can't be combined with --missing or --set.