bash/core/05_defaults.bash
raw ยท 283 bytes
__rbash_init_config() {
if [ -f "$RBASH_CONFIG" ]; then
return 0
fi
cat > "$RBASH_CONFIG" <<'EOF'
rbash_load "sources/10_aliases"
rbash_load "sources/12_shortcuts"
rbash_load "sources/40_go-command"
rbash_load "sources/41_pivot-command"
EOF
chmod 600 "$RBASH_CONFIG"
}