Happy holidays everyone! Here are some useful OS X tips and tricks that I thought I would share:

1) Command Line Shortcut: Aliases

Aliases in a traditional desktop UI are essentially shortcuts to other directories or files in your system. In general, they’re used to access objects hidden deep within your file structure or when you want a file in two seperate locations and you don’t want to copy it over.

Aliases in your Terminal are similar in the sense that they provide shortcuts to files, but unlike in a traditional desktop UI, the aliases can be used at any level in the file system. An alias is not a shortcut file or folder. Instead it is a command that can be typed at any point.

For example, if I access the folder ‘myFolder’ often, I would create an alias to basically trigger the function ‘cd /Users/Kevin/Documents/myFolder.’ To do this, open ‘~/.bash_profile’ and add the following line:

alias myFolderShortcut='cd /Users/Kevin/Documents/myFolder'


The .bash_profile file is a customizable list of user-contributed functions, aliases, etc. In some cases, the .bash_profile is loaded automatically when the Terminal starts, but I’ve found that mine doesn’t do this. Instead I type:

source .bash_profile

whenever I first open a Terminal session.

Now, you can type

alias myFolderShortcut

anywhere in your Terminal session and you will be directed to myFolder.

2) Faster Mac Dock Productivity

The Mac Dock is a great and simple way to quickly access your favorite applications without having to open your Applications folder; however, the half a second it takes to trigger the Dock reveal and then the extra second it takes for the Dock to slide into view can waste precious time. I don’t like having the Dock visible on my desktop because it takes up previous screen real estate. I found this video on Flipboard that explains how to “correclty” use the Mac Dock in the fastest and most efficient way possible:


Here is a screenshot of my setup:

3) Creating and Converting Plain Text Files on the Mac

Plain text files (ext. ‘.txt’) are fantastic ways to remove styling on text, share information between apps, etc. I realized I didn’t know how to create plain text files on my Mac. I researched it and found the solution to be quite simple. The stock Text Edit application on OS X has a native function to convert text files into plain text.

In TextEdit, navigate to Format->Make Plain Text. The keyboard shortcut command is: Command + Shift + T. It works similarly when converting Plain Text to Rich Text (ext. ‘.rtf’). If there is existing text, the application will prompt you with a warning before it converts.


Hope this helped!

Posted in Developer Tools with Terminal, Unix,