With each operating strategy update, our computers get further distant from their earliest, text-based interfaces, erstwhile copying files and launching programs required typing retired circumstantial commands alternatively than double-clicking connected icons. But though a batch of today’s users won’t cognize these bid enactment interfaces ever existed, and others volition person forgotten each astir them, they’re inactive contiguous successful macOS and successful Windows. More than that, they’re inactive really useful.
In this article, I’ll look astatine immoderate ways you tin entree and usage Terminal, a throwback to the days earlier macOS. There are 2 ways of launching it:
- In Spotlight, commencement typing Terminal, and erstwhile Terminal.app comes up, deed return.
- In Finder, spell to the Utilities folder (you’ll find that successful Applications) and look for Terminal.app.
There are a assortment of commands you tin usage successful Terminal. What follows are 9 commands that marque it worthy firing up. Simply benignant them successful astatine the punctual and deed Enter to confirm. To get much accusation astir immoderate command, usage the pursuing syntax, replacing “command” with the sanction of the circumstantial bid you’re funny successful (and support the quotes):
Screenshot: Apple
1. Change however screenshots are saved
defaults constitute com.apple.screencapture sanction “New Screen Shot Name”
By default, screenshots usage the record sanction format “Screen Shot [date] astatine [time].png” and are saved connected the desktop. Using the Terminal bid above, changing “New Screen Shot Name” to the record of your choice, you tin alteration this format.
The day and clip volition inactive be included, but the “Screen Shot” portion volition change. It tin beryllium utile if you’re putting unneurotic a batch of screenshots for 1 peculiar intent that you request to support separate.
2. Keep your Mac awake
caffeinate -t <length of time>
You tin ever alteration your Mac’s powerfulness settings done the Lock Screen sheet successful System Settings, but utilizing the Terminal tin beryllium quicker, particularly for impermanent tweaks. Use the bid supra to support your strategy awake for the specified magnitude of clip successful seconds (so 300 would adjacent 5 minutes).
You tin besides usage the “caffeinate” bid connected its own, which volition enactment disconnected slumber mode until the Terminal model is closed. It tin beryllium useful if you’ve got lengthy tasks oregon downloads connected the spell connected your Mac and don’t privation them to beryllium interrupted.
3. Get elaborate strategy presumption readings
The elemental “top” bid tin beryllium utilized arsenic an alternate to the Activity Monitor successful macOS, giving you a wealthiness of real-time stats astir the authorities of your system, including however overmuch CPU clip and representation each exertion is using. It’s large for getting a quick, at-a-glance overview of the strain your Mac is under.
Screenshot: Apple
4. Force-quit apps
Being capable to force-quit applications from the Terminal model tin beryllium utile successful each kinds of troubleshooting scenarios, particularly if the remainder of your strategy has frozen. Just regenerate “AppName” with the sanction of the app to unopen down, without the quotes. For example, “killall Finder” would force-quit the Finder interface.
5. Put a connection connected the login screen
sudo defaults constitute /Library/Preferences/com.apple.loginwindow LoginwindowText “Custom Text Here”
Use the bid supra and regenerate “Custom Text Here” (while keeping the quotes) to enactment a connection connected the macOS login screen. Maybe you privation to permission yourself a motivational connection to commencement each time oregon possibly you privation to enactment your email code onscreen successful lawsuit your MacBook gets lost.
To region the message, tally the bid again with thing betwixt the quotation marks.
6. Shut down oregon restart your Mac
sudo shutdown -h now
sudo shutdown -r now
The commands listed supra volition either unopen down (top) oregon restart (bottom) your Mac, which you whitethorn find easier than going done the menus. Even better, you tin adhd a fig astatine the extremity of the connection to bash a timed restart oregon shutdown (which is useful if you’re going to beryllium distant from your computer. For example, “sudo shutdown -r +10” volition restart your machine successful 10 minutes’ time.
Screenshot: Apple
7. Show a elemental calendar
The “cal” bid volition bring up a basal calendar onscreen showing the existent month, which tin beryllium adjuvant for rapidly checking days and dates. The relation truly comes into its ain erstwhile you request circumstantial months and years — “cal 1980” volition amusement you a calendar for 1980, for example, portion “cal 1 2030” volition amusement you a calendar for January 2030 (just usage the fig of the period to specify it).
8. Software update
softwareupdate -l
sudo softwareupdate -i -a
There are assorted clever Terminal commands you tin usage for updating the macOS operating system. The archetypal successful the database supra checks for updates for macOS, portion the 2nd installs immoderate disposable updates. (You tin besides specify circumstantial update names alternatively of the “-a” flag.)
Screenshot: Apple
9. Change the dock spacing
defaults constitute com.apple.dock persistent-apps -array-add ‘{“tile-type”=”spacer-tile”;}’; killall Dock
This is simply a classical illustration of the under-the-hood tweaks that Terminal is truly bully at: usage the syntax above, and you’ll find a blank tile is added to the dock, giving you immoderate abstraction betwixt your app shortcuts.
You tin resistance the abstraction astir the dock and transportation connected adding other ones arsenic needed. To get escaped of a separator you’ve added, right-click connected it and take Remove from Dock.
That’s it for now. If you usage Terminal successful different ways to marque things faster oregon easier, fto america cognize successful the comments!