CLS (Command Line Share) is a lightweight command-line tool written in Go for transferring files between a client and a server on a local network. It's simple, fast, and efficient, making it a great solution for local file sharing.
- Send Files: Quickly share files from a client to the server.
- List Files: View all files available on the server.
- Retrieve Files: Download files from the server to the client.
- Clone the repository:
git clone https://github.com/nielsjaspers/cls.git cd cls
-
Create a directory to store the server certificate and configuration:
mkdir server-crt cd server-crt
-
Create a file named
server.cnf
in theserver-crt
directory with the following content:[req] default_md = sha256 prompt = no req_extensions = v3_ext distinguished_name = req_distinguished_name [req_distinguished_name] CN = localhost [v3_ext] keyUsage = critical,digitalSignature,keyEncipherment extendedKeyUsage = critical,serverAuth subjectAltName = DNS:localhost
-
Run the
keygen.sh
script at the project root to generate and sign the certificates used by the client and server:./keygen.sh
-
Build the client and server binaries separately:
go build -o client ./cmd/cls/client go build -o server ./cmd/cls/server
-
The resulting
client
andserver
binaries are your executables for client and server operations, respectively.
To start the server and set up the directory for incoming files:
./server path <path/to/folder>
This will configure the server to save all received files in the specified folder.
To build and run a Docker container containing the server, you can use the provided shell script:
./dockersetup.sh
This script will handle building the Docker image and starting the container. Ensure you have Docker installed and running before executing the script.
If you want to make the server accessible on a local network, you can use a free Cloudflare tunnel to access the server with any device running the client. Documentation for this feature is still a work in progress.
To share a file with the server:
./client share <path/to/file>
To get a list of all files available on the server:
./client list
To download a specific file from the server and download it to a local path:
./client get <remote/file> <local/path>
Start the server and set the folder for incoming files:
./server path /home/user/shared_files
-
Share a file:
./client share /home/user/documents/report.pdf
-
List files on the server:
./client list
-
Retrieve a file from the server and save it to
home/user/
:./client get report.pdf home/user/
- Go 1.23.3 or higher
Contributions are welcome! Feel free to open an issue or submit a pull request.
This project is licensed under the Apache-2.0 License. See the LICENSE
file for details.