10 lines
151 B
Bash
Executable File
10 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# https://code.claude.com/docs/en/setup
|
|
|
|
set -E -o errexit -o nounset -o pipefail
|
|
set -x
|
|
|
|
curl -fsSL https://claude.ai/install.sh | bash
|
|
|