github.com/artpar/rclone@v1.67.3/docs/content/commands/rclone_lsl.md (about)

     1  ---
     2  title: "rclone lsl"
     3  description: "List the objects in path with modification time, size and path."
     4  slug: rclone_lsl
     5  url: /commands/rclone_lsl/
     6  groups: Filter,Listing
     7  versionIntroduced: v1.02
     8  # autogenerated - DO NOT EDIT, instead edit the source code in cmd/lsl/ and as part of making a release run "make commanddocs"
     9  ---
    10  # rclone lsl
    11  
    12  List the objects in path with modification time, size and path.
    13  
    14  ## Synopsis
    15  
    16  
    17  Lists the objects in the source path to standard output in a human
    18  readable format with modification time, size and path. Recurses by default.
    19  
    20  Eg
    21  
    22      $ rclone lsl swift:bucket
    23          60295 2016-06-25 18:55:41.062626927 bevajer5jef
    24          90613 2016-06-25 18:55:43.302607074 canole
    25          94467 2016-06-25 18:55:43.046609333 diwogej7
    26          37600 2016-06-25 18:55:40.814629136 fubuwic
    27  
    28  
    29  Any of the filtering options can be applied to this command.
    30  
    31  There are several related list commands
    32  
    33    * `ls` to list size and path of objects only
    34    * `lsl` to list modification time, size and path of objects only
    35    * `lsd` to list directories only
    36    * `lsf` to list objects and directories in easy to parse format
    37    * `lsjson` to list objects and directories in JSON format
    38  
    39  `ls`,`lsl`,`lsd` are designed to be human-readable.
    40  `lsf` is designed to be human and machine-readable.
    41  `lsjson` is designed to be machine-readable.
    42  
    43  Note that `ls` and `lsl` recurse by default - use `--max-depth 1` to stop the recursion.
    44  
    45  The other list commands `lsd`,`lsf`,`lsjson` do not recurse by default - use `-R` to make them recurse.
    46  
    47  Listing a nonexistent directory will produce an error except for
    48  remotes which can't have empty directories (e.g. s3, swift, or gcs -
    49  the bucket-based remotes).
    50  
    51  
    52  ```
    53  rclone lsl remote:path [flags]
    54  ```
    55  
    56  ## Options
    57  
    58  ```
    59    -h, --help   help for lsl
    60  ```
    61  
    62  
    63  ## Filter Options
    64  
    65  Flags for filtering directory listings.
    66  
    67  ```
    68        --delete-excluded                     Delete files on dest excluded from sync
    69        --exclude stringArray                 Exclude files matching pattern
    70        --exclude-from stringArray            Read file exclude patterns from file (use - to read from stdin)
    71        --exclude-if-present stringArray      Exclude directories if filename is present
    72        --files-from stringArray              Read list of source-file names from file (use - to read from stdin)
    73        --files-from-raw stringArray          Read list of source-file names from file without any processing of lines (use - to read from stdin)
    74    -f, --filter stringArray                  Add a file filtering rule
    75        --filter-from stringArray             Read file filtering patterns from a file (use - to read from stdin)
    76        --ignore-case                         Ignore case in filters (case insensitive)
    77        --include stringArray                 Include files matching pattern
    78        --include-from stringArray            Read file include patterns from file (use - to read from stdin)
    79        --max-age Duration                    Only transfer files younger than this in s or suffix ms|s|m|h|d|w|M|y (default off)
    80        --max-depth int                       If set limits the recursion depth to this (default -1)
    81        --max-size SizeSuffix                 Only transfer files smaller than this in KiB or suffix B|K|M|G|T|P (default off)
    82        --metadata-exclude stringArray        Exclude metadatas matching pattern
    83        --metadata-exclude-from stringArray   Read metadata exclude patterns from file (use - to read from stdin)
    84        --metadata-filter stringArray         Add a metadata filtering rule
    85        --metadata-filter-from stringArray    Read metadata filtering patterns from a file (use - to read from stdin)
    86        --metadata-include stringArray        Include metadatas matching pattern
    87        --metadata-include-from stringArray   Read metadata include patterns from file (use - to read from stdin)
    88        --min-age Duration                    Only transfer files older than this in s or suffix ms|s|m|h|d|w|M|y (default off)
    89        --min-size SizeSuffix                 Only transfer files bigger than this in KiB or suffix B|K|M|G|T|P (default off)
    90  ```
    91  
    92  ## Listing Options
    93  
    94  Flags for listing directories.
    95  
    96  ```
    97        --default-time Time   Time to show if modtime is unknown for files and directories (default 2000-01-01T00:00:00Z)
    98        --fast-list           Use recursive list if available; uses more memory but fewer transactions
    99  ```
   100  
   101  See the [global flags page](/flags/) for global options not listed here.
   102  
   103  # SEE ALSO
   104  
   105  * [rclone](/commands/rclone/)	 - Show help for rclone commands, flags and backends.
   106