chksum/README.md

47 lines
584 B
Markdown
Raw Normal View History

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-05-16 19:52:25 +02:00
git clone http://192.168.0.69:3000/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-16 19:52:25 +02:00
dotnet build chksum.csproj
2023-05-16 00:48:24 +02:00
```
Publish project
```bash
2023-05-16 19:52:25 +02:00
dotnet publish --configuration Release --arch x64 --use-current-runtime --self-contained
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
```