How to create.bashprofile file on Mac OS X. Published on April 9, 2016 by Daniel Lanza. By default, your system does not have the.bashprofile file for your user. Therefore you will need to create it to set environment variables for your current user when starting new session. Save and quit:q: Quits Vim but fails when file has been changed:w: Save the file:w newname: Save the file with the newname filename:wq: Save the file and quit Vim.:q! Quit Vim without saving the changes to the file. ZZ: Write file, if modified, and quit Vim: ZQ: Same as:q! Quits Vim without writing changes:saveas file: Save file as:close.
Published on April 9, 2016by Daniel Lanza
By default, your system does not have the .bash_profile file for your user. Therefore you will need to create it to set environment variables for your current user when starting new session.
In this tutorial, we are going to create a .bash_profile to set $JAVA_HOME environment variable.
- First, we are going to check out that .bash_profile does not exist.
- Go to user home and create the .bash_profile file.
- Push i key to insert contents with VIM editor, and write the environment variable.
- Push esc key and type :wq to save and close the file. Then, reload the .bash_profile file.
- The .bash_profile has been executed, and $JAVA_HOME has been set.
Save Vim File Machine
Please enable JavaScript to view the comments powered by Disqus.comments powered by DisqusRead next
Save Vim File Mac
See also
If you are planing to develop Java Apps on your Mac, you may have to set $JAVA_HOME environment variable.Install the latest Java Virtual Machine Go to How to install JDK on Mac OS X) to install a new Java Virtual Machine. Download the latest Java JDK package from Oracle.Check Java Virtual Machines List directories in the following root -> /Library/Java/JavaVirtualMachines$ ls -l /Library/Java/JavaVirtualMachines drwxr-xr-x 3 root wheel 102 23 dic 20:36 jdk1.
Read moreIf you are planing to develop Java Apps on your Mac, you have to install the JDK package. You only have to install the binary files provided by Oracle.Download JDK 8 from Oracle WebSite [jdk-8u65-macosx-x64.dmg for Mac] Double click on jdk-8u65-macosx-x64.dmg and follow the screen instructions JDK package will have been installed in /Library/Java/JavaVirtualMachines. In my computer, I have both 1.6 and 1.8 JDK package $ ls -l /Library/Java/JavaVirtualMachines drwxr-xr-x 3 root wheel 102 14 jul 23:52 1.
Save Vim File Mac Download
Read moreRequirements: Java (at least 1.6).First, check your java version by opening the terminal:$ java -version java version '1.8.0_65' Java(TM) SE Runtime Environment (build 1.8.0_65-b17) Java HotSpot(TM) 64-Bit Server VM (build 25.65-b01, mixed mode) Follow these steps:Download the binary Core Distribution from the original website (apache-tomcat-7.0.65.tar.gz): Apache Tomcat 7 Unzip the file downloaded Create a Tomcat folder in /Library. There we can leave several Tomcat versions to test sudo mkdir -p /Library/Tomcat sudo mv ~/Downloads/apache-tomcat-7.
Read more