You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to copy files from a zk server to a local drive, you have to first touch the files locally and then use "cp -f" to get them into place. The touching shouldn't be required.
for f in $(fileutil --zkhost=myhost.example.com ls zk:///some/path/); do
touch $f;
fileutil --zkhost=myhost.example.com cp -f zk:///some/path/${f} ${PWD}/${f};
done
Also, it would be nice to able to do globbing and not require the $PWD (or other absolute paths) in the local path.
The text was updated successfully, but these errors were encountered:
In order to copy files from a zk server to a local drive, you have to first touch the files locally and then use "cp -f" to get them into place. The touching shouldn't be required.
Also, it would be nice to able to do globbing and not require the $PWD (or other absolute paths) in the local path.
The text was updated successfully, but these errors were encountered: