Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ftpcp is a command line utility to copy files from one Local/FTP/SFTP server to another Local/FTP/SFTP server
ftpcp is a command line utility that allows you to copy files between two locations.
With ftpcp, you can copy a files
From your local system to a remote system.
From a remote system to your local system.
Between two remote systems from your local system.
Either through cloning with git or by using npm (the recommended way):
npm install -g ftpcp
If you don't want to install this package globally use npx to use this package
npx ftpcp <src> <dest>
$ftpcp --help
Usage: ftpcp [options] <Source FTP/SFTP> <Dest FTP/SFTP>
Options:
-V, --version output the version number
-i, --includes <items> the List files which you want to include
-e, --excludes <items> the List files which you want to exclude
-h, --help output usage information
It'll transfter all files from source server to destination server
src/dest >> <ftp/sftp>://<username>:<password>@<Host>:<Port><DirPath>
Copy files from remote ftp server to your local dir path
ftpcp ftp://user:password@localhost:21/path/to/dir /usr/local/dir/
Copy files from your local dir to remote server dir
ftpcp /usr/local/dir/ ftp://user:password@localhost:21/path/to/dir
Copy files from one FTP remote to another SFTP remote server and viceversa.
ftpcp ftp://user:password@remote1:21/path/to/dir sftp://user:password@remote2:22/path/to/dir
ftpcp sftp://user:password@remote1:22/path/to/dir ftp://user:password@remote1:21/path/to/dir
Include and exclude some files
ftpcp --includes *.csv,*.jpg --excludes *.zip <SRC> <DEST>
FAQs
ftpcp is a command line utility to copy files from one Local/FTP/SFTP server to another Local/FTP/SFTP server
The npm package ftpcp receives a total of 0 weekly downloads. As such, ftpcp popularity was classified as not popular.
We found that ftpcp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.