We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intent is to allow users to use a link to reference the sh file in /usr/bin instead of adding mlcp/bin to the PATH definition.
change in mlcp.sh:
< DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/../ --- > DIR="$( cd "$( dirname "$(realpath $0)" )" && pwd )"/..
This would allow the following to work:
sudo ln -s /path/to/mlcp/bin/mlcp.sh /usr/bin/mlcp
Users can then do mlcp anywhere without changing PATH definition
mlcp
The text was updated successfully, but these errors were encountered:
yunzvanessa
No branches or pull requests
Intent is to allow users to use a link to reference the sh file in /usr/bin instead of adding mlcp/bin to the PATH definition.
change in mlcp.sh:
This would allow the following to work:
Users can then do
mlcp
anywhere without changing PATH definitionThe text was updated successfully, but these errors were encountered: