A simple backup command-line utility to create backups of files
Find a file
2026-04-07 22:09:03 +02:00
.gitignore feat: implement add() 2026-04-07 21:18:42 +02:00
Program.cs enhance: add some error handling on add() 2026-04-07 22:03:13 +02:00
README.md mark as complete 2026-04-07 22:09:03 +02:00
stash.cs.csproj mark as complete 2026-04-07 22:09:03 +02:00

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