Answers for "get folder path mac"

0

search folder in current command mac

find / -type d -name "*farm-animal-type*"
Posted by: Guest on March-25-2021
3

adding path in mac

The easiest way to add a new path to $PATH (the environment variable) is with the export command. In this example we’ll add “~/opt/bin” to the user PATH with export:

export PATH=$PATH:~/opt/bin

You can run that directly from the command line, then check the $PATH with echo to show that it has been added like so:

echo $PATH
Posted by: Guest on November-25-2020

Browse Popular Code Answers by Language