alpha
Login
or
Join now
xcc.es
/
scripts
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/mrgnw/scripts.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
make it easier to duck things up
author
Morgan
date
2 years ago
(Apr 3, 2024, 4:16 PM +0200)
commit
1f2284f7
1f2284f7c3a4f52a757c99302347eb878144608e
parent
436bd7d2
436bd7d20a3ebe65ddc072605382262cf64b75ca
+13
1 changed file
Expand all
Collapse all
Unified
Split
duck»
+13
duck»
View file
Reviewed
···
1
1
+
#! /usr/bin/env zsh
2
2
+
3
3
+
v_latest=$(git-latest-tag duckdb/duckdb)
4
4
+
echo " 🦆" "$v_latest"
5
5
+
duck_url=https://github.com/duckdb/duckdb/releases/download/v$v_latest/duckdb_cli-osx-universal.zip
6
6
+
duck_zip="$HOME/Downloads/duckdb-${v_latest}.zip"
7
7
+
8
8
+
echo " 🐣" "$duck_url"
9
9
+
curl -L -o "$duck_zip" "$duck_url"
10
10
+
11
11
+
mkdir -p "$HOME/.binaries"
12
12
+
unzip -o "$duck_zip" -d "$HOME/.binaries"
13
13
+
trash "$duck_zip"