##My IP
My IP is a .bash_profile script that will allow you to grab your current IP Address.
###Usage
-
Open up Terminal.
-
Type the
myIpcommand.
$ myIp
- This should output your current IP Address. Something similar to this:
10.100.155.87.
##CD Finder
CD Finder is a .bash_profile script that will allow you to quickly navigate to the open Finder location inside of your Terminal.
###Usage
-
Open up Terminal.
-
Open up a Finder window and go to any location you'd like to navigate to. For example, your Desktop.
-
Inside of Terminal type the
cdfindercommand:
$ cdfinder
- Terminal should have no changed directories to your open finder window. So you should now be located in a directory similar to this example:
/Volumes/User Data/Users/username/Desktop.
##CSS Minifier
CSS Minifier is a .bash_profile script that will allow you to quickly minify your css for production.
###Usage
-
Open up Terminal and navigate to a CSS file you would like to minify.
-
Simply type the cssmin followed by the file you want to minify. For example, if you'd like to minify the file
style.css:
```
$ cssmin style
```
- This will output a file called
style.min.css.
##JS Minifier
JS Minifier is a .bash_profile script that will allow you to quickly minify your js for production.
###Usage
-
Open up Terminal and navigate to a JS file you would like to minify.
-
Simply type the jsmin followed by the file you want to minify. For example, if you'd like to minify the file
main.js:
```
$ jsmin main
```
- This will output a file called
main.min.js.