We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pushing files to Linux could be a little tedious:
cp -a /path/to/file-or-dir ~/../usr/var/lib/proot-distro/installed-rootfs/ubuntu/root/
To simplify the commands, would there be something like:
pd push /path/to/file-or-dir ubuntu
or maybe using an alias:
pd cp /path/to/file-or-dir ubuntu
Also, sometimes we simplily move the files instead of copying:
mv /path/to/file-or-dir ~/../usr/var/lib/proot-distro/installed-rootfs/ubuntu/root/
I noticed that the alias mv has already been used by rename, maybe there could be something like:
mv
rename
pd push --move /path/to/file-or-dir ubuntu
Thanks for consideration.
The text was updated successfully, but these errors were encountered:
Probably scp or docker syntax will fit here better, like
pd cp ubuntu:/path/to/file ~/file
Sorry, something went wrong.
Probably scp or docker syntax will fit here better, like pd cp ubuntu:/path/to/file ~/file
Thx that's good. I'm not insisting on the syntax. It would be appreciated if the feature could be implemented.
No branches or pull requests
Feature description
Pushing files to Linux could be a little tedious:
cp -a /path/to/file-or-dir ~/../usr/var/lib/proot-distro/installed-rootfs/ubuntu/root/
To simplify the commands, would there be something like:
or maybe using an alias:
Also, sometimes we simplily move the files instead of copying:
mv /path/to/file-or-dir ~/../usr/var/lib/proot-distro/installed-rootfs/ubuntu/root/
I noticed that the alias
mv
has already been used byrename
, maybe there could be something like:Thanks for consideration.
The text was updated successfully, but these errors were encountered: