# TermSCP [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![Stars](https://img.shields.io/github/stars/ChristianVisintin/TermSCP.svg)](https://github.com/ChristianVisintin/TermSCP) [![Issues](https://img.shields.io/github/issues/ChristianVisintin/TermSCP.svg)](https://github.com/ChristianVisintin/TermSCP/issues) [![Downloads](https://img.shields.io/crates/d/termscp.svg)](https://crates.io/crates/termscp) [![Crates.io](https://img.shields.io/badge/crates.io-v0.1.0-orange.svg)](https://crates.io/crates/termscp) [![Docs](https://docs.rs/termscp/badge.svg)](https://docs.rs/termscp) [![Build](https://github.com/ChristianVisintin/TermSCP/workflows/Linux/badge.svg)](https://github.com/ChristianVisintin/TermSCP/actions) [![Build](https://github.com/ChristianVisintin/TermSCP/workflows/MacOS/badge.svg)](https://github.com/ChristianVisintin/TermSCP/actions) [![Build](https://github.com/ChristianVisintin/TermSCP/workflows/Windows/badge.svg)](https://github.com/ChristianVisintin/TermSCP/actions) ~ Basically, WinSCP on a terminal ~ Developed by Christian Visintin Current version: 0.1.0 (06/12/2020) --- - [TermSCP](#termscp) - [About TermSCP ๐Ÿ–ฅ](#about-termscp-) - [Why TermSCP ๐Ÿค”](#why-termscp-) - [Features ๐ŸŽ](#features-) - [Usage โ“](#usage-) - [Installation โ–ถ](#installation-) - [Cargo ๐Ÿฆ€](#cargo-) - [Deb package ๐Ÿ“ฆ](#deb-package-) - [RPM Package ๐Ÿ“ฆ](#rpm-package-) - [Chocolatey ๐Ÿซ](#chocolatey-) - [Brew ๐Ÿป](#brew-) - [Documentation ๐Ÿ“š](#documentation-) - [Known issues ๐Ÿงป](#known-issues-) - [Upcoming Features ๐Ÿงช](#upcoming-features-) - [Contributions ๐Ÿค™๐Ÿป](#contributions-) - [Changelog โณ](#changelog-) - [License ๐Ÿ“ƒ](#license-) --- ## About TermSCP ๐Ÿ–ฅ TermSCP is basically a porting of WinSCP to terminal. So basically is a terminal utility with an TUI to connect to a remote server to retrieve and upload files and to interact with the local file system. It works both on **Linux**, **MacOS**, **UNIX** and **Windows** and supports SFTP, SCP, FTP and FTPS. ### Why TermSCP ๐Ÿค” It happens very often to me, when using SCP at work to forget the path of a file on a remote machine, which forces me then to connect through SSH, gather the file path and finally download it through SCP. I could use WinSCP, but I use Linux and I pratically use the terminal for everything, so I wanted something like WinSCP on my terminal. Yeah, I know there midnight commander too, but actually I don't like it very much tbh (and doesn't support scp). ## Features ๐ŸŽ - Different communication protocols - SFTP - SCP - FTP and FTPS - Practical user interface to explore and operate on the remote and on the local machine file system - Compatible with Windows, Linux, UNIX and MacOS - Written in Rust - Easy to extend with new file transfers protocols ## Usage โ“ TermSCP can be started with the following options: - `-v, --version` Print version info - `-h, --help` Print help page --- ## Installation โ–ถ If you're considering to install TermSCP I want to thank you ๐Ÿ’› ! I hope you will enjoy TermSCP! If you want to contribute to this project, don't forget to check out our contribute guide. [Read More](CONTRIBUTING.md) ### Cargo ๐Ÿฆ€ ```sh # Install termscp through cargo cargo install termscp ``` ### Deb package ๐Ÿ“ฆ Get `deb` package from [HERE](https://github.com/ChristianVisintin/TermSCP/releases/download/v0.1.0/termscp_0.1.0_amd64.deb) or run `wget https://github.com/ChristianVisintin/TermSCP/releases/download/v0.1.0/termscp_0.1.0_amd64.deb` then install through dpkg: ```sh dpkg -i termscp_*.deb # Or even better with gdebi gdebi termscp_*.deb ``` ### RPM Package ๐Ÿ“ฆ Get `rpm` package from [HERE](https://github.com/ChristianVisintin/TermSCP/releases/download/v0.1.0/termscp-0.1.0-1.x86_64.rpm) or run `wget https://github.com/ChristianVisintin/TermSCP/releases/download/v0.1.0/termscp-0.1.0-1.x86_64.rpm` then install through rpm: ```sh rpm -U termscp_*.rpm ``` ### Chocolatey ๐Ÿซ You can install TermSCP on Windows using [chocolatey](https://chocolatey.org/) Start PowerShell as administrator and run ```ps choco install termscp ``` Alternatively you can download the ZIP file from [HERE](https://github.com/ChristianVisintin/TermSCP/releases/download/v0.1.0/termscp.0.1.0.nupkg) and then with PowerShell started with administrator previleges, run: ```ps choco install termscp -s . ``` ### Brew ๐Ÿป --- ## Documentation ๐Ÿ“š The developer documentation can be found on Rust Docs at --- ## Known issues ๐Ÿงป - Ftp: - Time in explorer is `1 Jan 1970`, but shouldn't be: that's because chrono can't parse date in a different locale. So if your server has a locale different from the one on your machine, it won't be able to parse the date. --- ## Upcoming Features ๐Ÿงช - **File viewer**: possibility to show in a popup the file content from the explorer. --- ## Contributions ๐Ÿค™๐Ÿป Contributions are welcome! ๐Ÿ˜‰ If you think you can contribute to TermSCP, please follow [TermSCP's contributions guide](CONTRIBUTING.md) ## Changelog โณ See the enire changelog [HERE](CHANGELOG.md) --- ## License ๐Ÿ“ƒ Licensed under the GNU GPLv3 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. You can read the entire license [HERE](LICENSE)