2023-05-16 00:39:16 +02:00
|
|
|
# chksum
|
|
|
|
|
2023-05-16 00:48:24 +02:00
|
|
|
Checksums every file under the current directory
|
|
|
|
|
|
|
|
## Run Locally
|
|
|
|
|
|
|
|
Clone the project
|
|
|
|
|
|
|
|
```bash
|
2023-06-23 22:34:00 +02:00
|
|
|
git clone https://gitea.hopeless-cloud.xyz/ProfessionalUwU/chksum.git
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Go to the project directory
|
|
|
|
|
|
|
|
```bash
|
2023-05-16 19:52:25 +02:00
|
|
|
cd chksum
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Install dependencies
|
|
|
|
|
|
|
|
```bash
|
2023-05-16 19:52:25 +02:00
|
|
|
pacman -S dotnet-runtime dotnet-sdk
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Build project
|
|
|
|
|
|
|
|
```bash
|
2023-06-25 16:48:43 +02:00
|
|
|
just build
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Publish project
|
|
|
|
|
|
|
|
```bash
|
2023-06-25 16:48:43 +02:00
|
|
|
just publish
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Go to the publish folder
|
|
|
|
```bash
|
2023-06-25 16:48:43 +02:00
|
|
|
cd src/Chksum/bin/Release/net7.0/linux-x64/publish
|
|
|
|
```
|
|
|
|
|
2023-05-16 00:48:24 +02:00
|
|
|
Run executable
|
|
|
|
|
|
|
|
```bash
|
2023-06-26 12:58:05 +02:00
|
|
|
./Chksum
|
|
|
|
```
|