You must log in or # to comment.
There might be a better way, but how I generally handle this is adding the
~/.local/bindirectory to the start of thePATHenv via~/.bashrclike:export PATH="${HOME}/.local/bin:${PATH}"and creating a file with the name
~/.local/bin/command. This file will look something like what is below, note the full path to the real binary (/usr/bin/commandin this case) else you’ll get an endless recursion:#!/bin/bash export SOME_ENV_VAR=value /usr/bin/command ${@}Once you
chmod +x ~/.local/bin/command, you can just callcommandand it will run it with the script which sets up the environment and passes the arguments to the actual binary.


