This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Multi-Account Switcher for Claude Code | |
# Simple tool to manage and switch between multiple Claude Code accounts | |
set -euo pipefail | |
# Configuration | |
readonly BACKUP_DIR="$HOME/.claude-switch-backup" | |
readonly SEQUENCE_FILE="$BACKUP_DIR/sequence.json" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |