├── .github └── workflows │ └── release-plz.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-MIT ├── README.md ├── UNLICENSE ├── cliff.toml ├── default_settings.toml ├── demo2.tape ├── docs └── config_man_page.md ├── man ├── filessh.1 └── filessh.5 ├── release-plz.toml └── src ├── cli ├── definition.rs └── mod.rs ├── completions.rs ├── config.rs ├── errors.rs ├── files.rs ├── logging.rs ├── main.rs ├── par_dir_traversal └── mod.rs ├── patched_line_gauge.rs ├── ssh.rs └── tui ├── main_ui.rs └── mod.rs /.github/workflows/release-plz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/.github/workflows/release-plz.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /logs 3 | /*.gif 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/UNLICENSE -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/cliff.toml -------------------------------------------------------------------------------- /default_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/default_settings.toml -------------------------------------------------------------------------------- /demo2.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/demo2.tape -------------------------------------------------------------------------------- /docs/config_man_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/docs/config_man_page.md -------------------------------------------------------------------------------- /man/filessh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/man/filessh.1 -------------------------------------------------------------------------------- /man/filessh.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/man/filessh.5 -------------------------------------------------------------------------------- /release-plz.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/release-plz.toml -------------------------------------------------------------------------------- /src/cli/definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/cli/definition.rs -------------------------------------------------------------------------------- /src/cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/cli/mod.rs -------------------------------------------------------------------------------- /src/completions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/completions.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/files.rs -------------------------------------------------------------------------------- /src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/logging.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/par_dir_traversal/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/par_dir_traversal/mod.rs -------------------------------------------------------------------------------- /src/patched_line_gauge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/patched_line_gauge.rs -------------------------------------------------------------------------------- /src/ssh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/ssh.rs -------------------------------------------------------------------------------- /src/tui/main_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/tui/main_ui.rs -------------------------------------------------------------------------------- /src/tui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayanAXHF/filessh/HEAD/src/tui/mod.rs --------------------------------------------------------------------------------