Files
claudaris/files/bash_aliases
T
2026-07-14 20:47:29 +00:00

35 lines
895 B
Bash

#!/bin/bash
# Bash aliases for the claudaris container
# ls long hidden and human readable
alias ll='ls -lah'
alias l1='ls -1'
alias ls='ls --color=auto'
# up levels (up #_of_dir_up)
function cd_up() {
cd $(printf "%0.0s../" $(seq 1 $1));
}
alias up='cd_up'
# or just ctrl+d
alias quit='exit'
alias e='exit'
# tmux
alias tl='tmux list-sessions'
# git
alias gs='git status'
alias btw='fastfetch'
alias cd='z'
# MCP servers (see Dockerfile / entrypoint.sh). Uncomment and point at your
# instances — Claude Code passes its environment through to the stdio
# servers, so exporting these here is all the configuration they need.
#export GITEA_HOST='https://gitea.example.com'
#export GITEA_ACCESS_TOKEN='changeme'
#export N8N_API_URL='https://n8n.example.com' # optional: enables workflow management tools
#export N8N_API_KEY='changeme'
#export INVOKEAI_BASE_URL='http://127.0.0.1:9090'