9 Command Line Tricks for Mac OS X You Should Know

Dec 5, 2012 - 14 Comments

Command line tricks for OS X you should know

The command line is often considered the realm of advanced users, but that doesn’t mean every usage of Terminal has to involve rocket science. This collection of terminal tips should apply to a wide variety of Mac users, and everyone from beginners to advanced users should find something worthwhile here.

Some of these tricks may require Xcode to be installed on the Mac, Xcode is a free download from the App Store.

Prevent Screen Savers and Sleep with “caffeinate”

New to OS X Mountain Lion, caffeinate is like a command line version of everyones favorite Caffeine utility. Usage is simple, with caffeinate running the Mac will not sleep, and screen savers will not activate. At it’s simplest, it can be run alone, but it’s probably best used with a time limit attached to it like so:

caffeinate -t 3600

The -t flag specifies the time in seconds, the example above runs caffeinate for an hour.

Extract PKG Files with “pkgutil”

Need to grab a file out of a .pkg file? Maybe you want to see what’s inside of a pkg without installing it? No sweat, pkgutil does the job:

pkgutil --expand sample.pkg ~/Desktop/

This will dump the entire pkg contents into the specified directory, without installing it.

Use “purge” to Free Up Memory

The purge command forcibly flushes the disk and memory caches, having an effect similar to when you reboot a Mac. Though some say that purge only offers a placebo effect, it absolutely does work to send system memory from the “Inactive” category back to the freely available RAM, and in situations where you are running low on real memory, it can provide a speed boost.

Using purge is simple, type the following at a command prompt:

purge

Wait a minute or so for changes to take effect, the process is usually much faster on Macs with SSD drives.

Launch Multiple Instances of Apps with “open”

You may already know that you can open applications in the OS X GUI from the command line with the ‘open’ command, but did you know that you can run multiple instances of apps by attaching the -n flag to the open command? It’s easy to use, here’s all you have to do:

open -n /Applications/Safari.app/

The example runs another instance of Safari. Change the app name accordingly, and don’t forget to include the .app extension.

Updating OS X without the App Store

Want to install system software and updates without bothering with the Mac App Store? You can do that directly from the command line instead with the help of the softwareupdate command. To install every update that is available, just run the following:

sudo softwareupdate -i -a

You can read more about softwareupdate command here, it has been bundled in OS X for years and works the same regardless of which version you’re using.

List Everything You’ve Ever Downloaded

We’ve all been there; you downloaded something a while ago from a domain you sort of remember, but you can’t quite remember what or from where. You’re in luck, because Quarantine Services keeps a database of everything that has ever been downloaded, and you can query that database to find what you were looking for. Use the sqlite3 command as follows to see everything:

sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'select LSQuarantineDataURLString from LSQuarantineEvent' |more

Of course you can also delete that list if the existence bothers you.

Hide Files or Folders from Finder with “chflags”

Got a secret file or folder you want to keep hidden from the Finder? Use chflags to turn any file invisible from the OS X GUI file system, it works the same whether you’re pointing it at a file or a directory:

chflags hidden /path/to/file/or/folder/

Lucky (or unlucky) for us command line folks, the file will still be visible with ls, but it will remain hidden in the Finder until the “nohidden” flag is attached like so:

chflags nohidden /path/to/unhide/

Changes are immediate in either event.

Automatically Type Long Paths with a Drag & Drop

Did you know you can drag and drop any file from the Finder into the command line and the entire path to that file will be automatically printed? This isn’t exclusively a command line tip, but it’s so useful that it has to be included. This is probably best used in conjunction with a command to prefix the path, like so:

sudo vi (drag file here to print the full path)

This works anywhere in the command line, even when you’re already in an app.

Create a Password Protected Zip Archive

If you’re sending a file through an unsecured medium or hosting it publicly, yet want to provide some level of protection, you can create a password protected zip archive with the -e flag:

zip -e protected.zip /file/to/protect/

Without the -e flag you’ll just be creating a standard zip file without a password.

.

Related articles:

Posted by: William Pearson in Command Line, Mac OS, Tips & Tricks

14 Comments

» Comments RSS Feed

  1. jch says:

    From the purge man page:

    “Purge can be used to approximate initial boot conditions with a cold disk buffer cache for performance analysis. It does not affect anonymous memory that has been allocated through malloc, vm_allocate, etc.”

    The first thing that happens when you flush the buffer cache is that all the files that were in use and in the buffer cache and being used by applications have to be read in again. Releasing inactive memory doesn’t help machine performance at all, it actually makes it worse. In some cases, especially on a server of any kind, much, much worse.

  2. ag2web says:

    Or use XLine instead of terminal for some commands:
    http://www.cycliccode.com/XLine/index.html

  3. Dino Trudel says:

    Just a funny observation, your first screenshot for this post with the echo command shows that the echo doesn’t echo the real thing, it introduces a typo in “should” ;)

  4. NoName says:

    A little tip:
    You can enable notifications in notifications center for crashed apps:
    You need:
    – CrashReporterPreferences from Xcode Auxiliary Tools
    Open CrashReporterPrefs and enable the “Use Notification Center” checkbox.
    There you can also enable two other modes for crash notifications.

    NoName

  5. Dirk-Jan says:

    Great tips, but you why did you photoshop the image above the article?
    An echo of “should” does not result in “shoudld”

    (If you didn’t want your username@server to show, just type `PS1=’$ ‘` in the terminal first)

  6. Aberto I says:

    how to stop caffeinate command?

  7. Greg Pennefather says:

    As always, a great tip. I checked out the download database and thought it empty too. But it seems that it stores every file downloaded as an email attachment too and these show up blank using this query because the selected field is blank i those entries. If you change the query to sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* ‘select LSQuarantineDataURLString from LSQuarantineEvent where LSQuarantineAgentName is “Safari”‘
    You will see only the files downloaded by Safari

  8. Linus says:

    My personal favourite is kind of the opposite of caffeinate;

    sudo shutdown -h +45

    Perfect to use for not having to get out of bed to turn of the computer after watching that last episode before lights out.

  9. hipciu says:

    Is there a way to make caffeinate works when my MacBook is closed? I mean, it works fine but the moment I close my laptop, the OS goes to sleep.

  10. Wonder says:

    Great list! I think the sql database of files downloaded is no longer stored though, at least in OS X 10.8.2 mine returns nothing?

Leave a Reply

 

Shop on Amazon.com and help support OSXDaily!

Subscribe to OSXDaily

Subscribe to RSS Subscribe to Twitter Feed Follow on Facebook Subscribe to eMail Updates

Tips & Tricks

News

iPhone / iPad

Mac

Troubleshooting

Shop on Amazon to help support this site