This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/bash/module/Export.sh

9 lines
250 B
Bash

# Add all links in ~/app/bin/
export PATH=$( find -L ${HOME}/app/bin/ -type d -printf ":%p" 2> /dev/null ):${PATH}
# Bash modules.
export BASH_MODULE_PATH="${HOME}/.config/bash/module"
# Docker config.
export DOCKER_CONFIG="${HOME}/.config/docker"