Anyone know the CLI command to download all files ...
# sdf
m
Anyone know the CLI command to download all files recursively from the
/SuiteScripts
folder? If I use
suitecloud file:import --paths /SuiteScripts/*
, it results in a local shell error,
zsh: no matches found: /SuiteScripts/*
. If I wrap the path in quotes,
suitecloud file:import --paths "/SuiteScripts/*"
, it results in
Copy code
The remote server returned an error: https://<account>.<http://app.netsuite.com:443/app/ide/ide.nl|app.netsuite.com:443/app/ide/ide.nl> - Unauthorized
The example provided in
--help
is exactly
"/SuiteScripts/*"
. I know I'm authenticated correctly because if I specify a single file, it downloads just fine. Thoughts?
a
In non interactive way you have to specify full path of file, you can provide multiple paths but path should include file name. The otherway is you can run the command in interactive way and select the folder then select multiple files to download
m
Got it. Thanks!