Skip to content

Commit 431fb4d

Browse files
committed
path
1 parent 5163ca2 commit 431fb4d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

kx.sh

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
mkdir -p kx
2-
curl -o kx/k.h http://kx.com/q/c/c/k.h
3-
curl -o kx/l32/c.o http://kx.com/q/l32/c.o
4-
curl -o kx/l64/c.o http://kx.com/q/l64/c.o
5-
curl -o kx/m32/c.o http://kx.com/q/m32/c.o
6-
curl -o kx/m64/c.o http://kx.com/q/m64/c.o
1+
a="l64 l32 m32 m64"
2+
b="https://raw.githubusercontent.com/KxSystems/kdb/master"
3+
for x in $a; do
4+
mkdir -p "kx/$x"
5+
curl -o "kx/$x/c.o" "$b/$x/c.o"
6+
done
7+
curl -o "kx/k.h" "$b/c/c/k.h"

0 commit comments

Comments
 (0)