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
Raw Normal View History

2024-02-24 20:25:27 +03:00
# Add all links in ~/app/bin/
2024-01-17 20:22:36 +03:00
export PATH=$( find -L ${HOME}/app/bin/ -type d -printf ":%p" 2> /dev/null ):${PATH}
2023-08-08 16:24:15 +03:00
2024-02-24 20:25:27 +03:00
# Bash modules.
2023-12-07 04:02:47 +03:00
export BASH_MODULE_PATH="${HOME}/.config/bash/module"
2024-01-17 20:22:36 +03:00
2024-01-30 00:21:47 +03:00
# Docker config.
export DOCKER_CONFIG="${HOME}/.config/docker"