Environment variable for fast-list

I know that the environment variable for --fast-list is RCLONE_FAST_LIST, but should I set it to something special? Can I just export RCLONE_FAST_LIST? Or should I export RCLONE_FAST_LIST=true?

hi,
i did a quick test, needed to use export RCLONE_FAST_LIST=true
tho on linux, there are often more than one way.

+ export RCLONE_FAST_LIST
+ rclone lsd remote:zork -vv
DEBUG : rclone: Version "v1.60.1" starting with parameters ["rclone" "lsd" "remote:zork" "-vv"]
DEBUG : Creating backend with remote "remote:zork"

+ export RCLONE_FAST_LIST=true
+ RCLONE_FAST_LIST=true
+ rclone lsd remote:zork -vv
DEBUG : Setting --fast-list "true" from environment variable RCLONE_FAST_LIST="true"
DEBUG : rclone: Version "v1.60.1" starting with parameters ["rclone" "lsd" "remote:zork" "-vv"]

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.