Skip to content

Commit

Permalink
update readme (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
masterflitzer authored Feb 2, 2025
1 parent 43a2017 commit 921c5f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
```bash
asset="linux-aarch64-ddns_cloudflare"; bin="/usr/local/sbin/ddns-cloudflare"; curl -Lso "${bin}.new" "https://github.com/masterflitzer/ddns-cloudflare/releases/latest/download/${asset}" && mv "${bin}.new" "${bin}" && chmod 0754 "${bin}"

vim $(ddns-cloudflare --configuration)
vim "$(ddns-cloudflare --configuration)"
vim /etc/cron.d/ddns-cloudflare
```

### Windows (pwsh)

```pwsh
$asset = "windows-x86_64-ddns_cloudflare.exe"; $bin = "$env:localappdata/programs/ddns-cloudflare/ddns-cloudflare.exe"; curl -Lso "${bin}.new" "https://github.com/masterflitzer/ddns-cloudflare/releases/latest/download/${asset}" && mv -force "${bin}.new" "${bin}"
$asset = "windows-x86_64-ddns_cloudflare.exe"; $bin = "$env:LOCALAPPDATA/Programs/ddns-cloudflare/ddns-cloudflare.exe"; curl.exe -Lso "${bin}.new" "https://github.com/masterflitzer/ddns-cloudflare/releases/latest/download/${asset}" && mv -force "${bin}.new" "${bin}"
```

- Use **Task Scheduler** as an replacement for **cron** on Windows
Expand Down

0 comments on commit 921c5f6

Please sign in to comment.