A simple backup command-line utility to create backups of files
- C# 100%
| .gitignore | ||
| Program.cs | ||
| README.md | ||
| stash.cs.csproj | ||
Stash
A simple backup command-line utility to create backups of files
Installation
If you wanna install this system-wide, simply follow the instructions below!
# 1. find the paht to the binary
# 2. run this command and symlink it
ln -sf path/to/stash ~/.local/bin/stash
# 3. congratulations! you now have stash installed
Usage
# Create a backup
stash add "path/to/file/or/directory"
# View backups
stash ls
# Remove a backup
stash rm "path/to/file/or/directory"
Build
Uses dotnet9
# build binary
dotnet build
# build & run
dotnet run