root@server:~# ll /local/folder_test/
20/
2022/
2023/
22/
root@server:~# rclone lsf /local --include="folder_test/[0-9][0-9][0-9][0-9]/*" --recursive --dirs-only --config /etc/animati/union/rclone.conf
folder_test/
folder_test/2022/
folder_test/2023/
in docs is a bit confused on how to use regex. I don't know if I'm using the correct form. I would like to show on the screen only the folders with names from 1 to 9999.
tried to use folder_test/[0-9]{4}/*
but didn't work.
another question would be not showing the root folder, only the numbered folders...
any ideia?