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-05-17 12:22:18 +02:00
|
|
|
dotnet build chksum.csproj
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Publish project
|
|
|
|
|
|
|
|
```bash
|
2023-05-17 12:22:18 +02:00
|
|
|
dotnet publish --configuration Release chksum.csproj
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Go to the publish folder
|
|
|
|
```bash
|
2023-05-16 19:52:25 +02:00
|
|
|
cd bin/Release/net7.0/linux-x64/publish
|
2023-05-16 00:48:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Run executable
|
|
|
|
|
|
|
|
```bash
|
2023-05-16 19:52:25 +02:00
|
|
|
./chksum
|
|
|
|
```
|