Windows shortcuts are very well known, but today I'm going to share some very useful Linux/Unix keyboard shortcuts which you can use on the Linux OS terminal. Don't just read the below keyboard shortcuts, open your Linux terminal and try them while reading. Useful Keyboard Shortcuts for Linux Terminal. Integrated terminal ⌃` Show integrated terminal ⌃⇧` Create new terminal ⌘C Copy selection ⌘↑ / ↓ Scroll up/down / PgDn Scroll page up/down Home / End Scroll to top/bottom Other operating systems' keyboard shortcuts and additional unassigned shortcuts available at aka.ms/vscodekeybindings Keyboard shortcuts for macOS.
MacBook owners have a number of tools that come in very handy for using their laptops efficiently and for maintaining the operating system to keep it running in top shape. These MacBook keyboard shortcuts for the Finder, a maintenance checklist, and a 'translation' of the modifier keys will speed you on your way to becoming a MacBook power user.
Mac OS X Finder Keyboard Shortcuts
The Mac OS X Lion Finder helps you access and organize most of the important Mac OS X functions while you work. Use Finder keyboard shortcuts to display windows, copy and move files, and launch applications. These keyboard shortcuts help you get things done more efficiently.
Key | Function |
---|---|
Command+A | Selects all items in the active window (icon view), all items in the column (column view), or all items in the list (cover flow view) |
Command+C | Copies selected items |
Command+D | Duplicates the selected item(s) |
Command+E | Ejects the selected volume |
Command+F | Displays the Find dialog |
Command+H | Hides All Finder windows |
Command+I | Shows info for selected item or items |
Command+J | Shows the view options for the active window |
Command+K | Displays the Connect to Server dialog |
Command+L | Creates an alias for the selected item |
Command+M | Minimizes the active window |
Command+N | Opens a new Finder window |
Command+O | Opens (or launches) the selected item |
Command+R | Shows the original for selected alias |
Command+T | Adds the selected item to the Sidebar |
Command+V | Pastes items from the Clipboard |
Command+W | Closes the active window |
Command+X | Cuts the selected items |
Command+Z | Undoes the last action (if possible) |
Command+, | Displays Finder Preferences |
Command+1 | Shows the active window in icon mode |
Command+2 | Shows the active window in list mode |
Command+3 | Shows the active window in column mode |
Command+4 | Shows the active window in cover flow mode |
Command+[ | Moves back to the previous Finder location |
Command+] | Moves forward to the next Finder location |
Command+Del | Moves selected items to the Trash |
Command+up-arrow | Show enclosing folder |
Command+` | Cycles through windows |
Command+? | Displays the Mac OS X Help Viewer |
Command+Shift+A | Takes you to your Applications folder |
Command+Shift+C | Takes you to the top-level Computer location |
Command+Shift+G | Takes you to a folder that you specify |
Command+Shift+H | Takes you to your Home folder |
Command+Shift+I | Connects you to your iDisk |
Command+Shift+Q | Logs you out |
Command+Shift+N | Creates a new untitled folder in the active window |
Command+Shift+U | Takes you to your Utilities folder |
Command+Shift+Del | Deletes the contents of the Trash |
Command+Option+H | Hides all windows except the Finder's window(s) |
Command+Option+N | Creates a new Smart Folder |
Command+Option+T | Hides the Finder window toolbar |
Command+Option+Space | Opens the Spotlight window |
Command+Space | Opens the Spotlight menu |
F8 | Choose another desktop using Spaces |
Control+up-arrow (or F3, depending on your keyboard model) | Displays the Mission Control screen |
Control+down-arrow (or Control+F3, depending on your keyboard model) | Shows all open windows for the current application using Mission Control |
F11 (or Command+F3, depending on your keyboard model) | Hides all windows to display the Desktop using Mission Control |
F12 (or F4, depending on your keyboard model) | Displays your Dashboard widgets |
Space | Quick Look |
Strange-Looking Keys on the MacBook Keyboard
New to the Macintosh world? Some keys on the MacBook keyboard may be mystifying. Whether you're using Snow Leopard or an older version of Mac OS X, recognizing and using modifier keys will make your job easier. Here's a look at the modifier keys on both MacBook and desktop keyboards:
Mac OS X Maintenance Checklist
Maintenance is vital if you want to keep Mac OS X Lion in tip-top condition for as long as possible. Maintaining your MacBook keeps it running fast and smooth. Basic housekeeping includes regular back-ups plus some other, less familiar, tasks. Check this table often, or print it and keep a copy near your laptop!
. Install mac for pc. You need a fresh copy of macOS, a USB drive, free tools called UniBeast and MultiBeast, and compatible PC hardware.
Mac Maintenance Task | Schedule |
---|---|
Check for updates with Software Update | Once a day (automatic setting) |
Back up with Time Machine | Automatic |
Defragment (Micromat TechTool Pro/Prosoft Engineering Drive Genius 3) | Once a week |
Repair Disk Permissions (Disk Utility) | Once a week |
Delete Unnecessary User Accounts (System Preferences) | As necessary |
Scan for viruses (Intego VirusBarrier X6, ClamXav 2) | Automatic |
Check all volumes (Disk Utility/ Micromat TechTool Pro) | Once a week |
Check for the latest drivers for your hardware | Once a month (or after installing new hardware) |
Delete temporary Internet cache files (Prosoft Engineering Drive Genius 3) | Once a month |
Terminal is one of the most powerful macOS apps, which allows you to perform actions with different commands. Although Terminal Commands are seemingly difficult to carry out, believe me, they aren't. Once you know the commands, you can quickly perform tasks like shutting down your Mac or copying contents from one place to another right from your terminal
As the terminal is a CLI (Command Line Interface), the language we type in which interacts with the Mac, is known as bash, and commands are called bash commands. This tool is often overlooked because it is completely different from the GUI (Graphical User Interface ), which provides a rich interface. But today I've come up with a useful list of macOS Terminal Commands that you can learn easily and will help you do things instantly. So let's start.
11 Cool Terminal Commands for macOS – Mac User Should Try
#1. Hide/Unhide and View Files/Folders in Finder
macOS Terminal provides you an easy way to Hide, Unhide or View hidden files in the Finder via Terminal.
Open up the terminal from /Applications/finder or alternatively launch it from Spotlight.
To Hide any File/Folder:
Type in the following command :
Now, drag the file which you want to hide in the terminal and click Enter.
To View Hidden File/Folder:
Type defaults write com.apple.finder AppleShowAllFiles -bool TRUE in the Terminal.
Once done you need to restart the Finder, it can be done by this command.
If you ever wish to hide the sensitive files again, repeat all the commands by replacing TRUE with FALSE.
To Unhide any File/Folder:
Unhiding the file/folder is fairly easy, just replace 'hidden' with 'nohidden'.
Now, drag the file/folder which you want to unhide.
#2. Download Files Using Terminal
If you've a direct link of the file which you want to download, you can use the following commands to download the file using the Terminal on Mac.
Note: If you want to download the contents to any other directory replace 'downloads' with the directory name.
#3. Keep your Mac Awake
To prevent the mac from sleep, or showing screensaver after some inactivity use
If you want this command to get auto-disabled after a certain period of time, put the -t flag and specify the time in seconds as shown below.
Here, after 150000 seconds the command will get disabled, and the settings will be restored. Meanwhile, you can also use Cmd + C to terminate the command.
#4. Change Default Screenshot Format Type
By default, the screenshots are saved in .PNG format, but you can gain full control over the screenshots behavior.
To change default screenshot format type, use defaults write com.apple.screencapture type followed by type for e.g. : ( PNG, JPG, GIF, or PDF), then press Enter.
#5. Access iCloud Drive Using Terminal
To access the data from your iCloud Drive use the following command.
However, we already have a detailed guide on how you can access, copy, or move data to your iCloud Drive, which you can check out anytime.
#6. Shut Down or Restart Mac using Terminal
To shut down your mac with CLI (Command Line Interface) aka Terminal, use
Just as shut down, you can restart your Mac by
#7. View File Contents
To access the contents of any damaged or corrupted file, you can force the terminal to open it with this command.
Note: If you try to open an image file in the terminal, it will show some gibberish text.
#8. Speed Up Time Machine Backup
Whenever you're updating the Mac to the new version, backup's are assurity of your data and the easiest way to take a backup is to use Time Machine. But do you know? You can speed up time machine backup using the terminal by this command
#9. Add Spaces to your Dock
If you feel, your dock is crowded with a lot of apps. You can add up a little space between each app icon, here's how.
Type:
and hit Return.
Once done, type:
and press Return again
Windows shortcuts are very well known, but today I'm going to share some very useful Linux/Unix keyboard shortcuts which you can use on the Linux OS terminal. Don't just read the below keyboard shortcuts, open your Linux terminal and try them while reading. Useful Keyboard Shortcuts for Linux Terminal. Integrated terminal ⌃` Show integrated terminal ⌃⇧` Create new terminal ⌘C Copy selection ⌘↑ / ↓ Scroll up/down / PgDn Scroll page up/down Home / End Scroll to top/bottom Other operating systems' keyboard shortcuts and additional unassigned shortcuts available at aka.ms/vscodekeybindings Keyboard shortcuts for macOS.
MacBook owners have a number of tools that come in very handy for using their laptops efficiently and for maintaining the operating system to keep it running in top shape. These MacBook keyboard shortcuts for the Finder, a maintenance checklist, and a 'translation' of the modifier keys will speed you on your way to becoming a MacBook power user.
Mac OS X Finder Keyboard Shortcuts
The Mac OS X Lion Finder helps you access and organize most of the important Mac OS X functions while you work. Use Finder keyboard shortcuts to display windows, copy and move files, and launch applications. These keyboard shortcuts help you get things done more efficiently.
Key | Function |
---|---|
Command+A | Selects all items in the active window (icon view), all items in the column (column view), or all items in the list (cover flow view) |
Command+C | Copies selected items |
Command+D | Duplicates the selected item(s) |
Command+E | Ejects the selected volume |
Command+F | Displays the Find dialog |
Command+H | Hides All Finder windows |
Command+I | Shows info for selected item or items |
Command+J | Shows the view options for the active window |
Command+K | Displays the Connect to Server dialog |
Command+L | Creates an alias for the selected item |
Command+M | Minimizes the active window |
Command+N | Opens a new Finder window |
Command+O | Opens (or launches) the selected item |
Command+R | Shows the original for selected alias |
Command+T | Adds the selected item to the Sidebar |
Command+V | Pastes items from the Clipboard |
Command+W | Closes the active window |
Command+X | Cuts the selected items |
Command+Z | Undoes the last action (if possible) |
Command+, | Displays Finder Preferences |
Command+1 | Shows the active window in icon mode |
Command+2 | Shows the active window in list mode |
Command+3 | Shows the active window in column mode |
Command+4 | Shows the active window in cover flow mode |
Command+[ | Moves back to the previous Finder location |
Command+] | Moves forward to the next Finder location |
Command+Del | Moves selected items to the Trash |
Command+up-arrow | Show enclosing folder |
Command+` | Cycles through windows |
Command+? | Displays the Mac OS X Help Viewer |
Command+Shift+A | Takes you to your Applications folder |
Command+Shift+C | Takes you to the top-level Computer location |
Command+Shift+G | Takes you to a folder that you specify |
Command+Shift+H | Takes you to your Home folder |
Command+Shift+I | Connects you to your iDisk |
Command+Shift+Q | Logs you out |
Command+Shift+N | Creates a new untitled folder in the active window |
Command+Shift+U | Takes you to your Utilities folder |
Command+Shift+Del | Deletes the contents of the Trash |
Command+Option+H | Hides all windows except the Finder's window(s) |
Command+Option+N | Creates a new Smart Folder |
Command+Option+T | Hides the Finder window toolbar |
Command+Option+Space | Opens the Spotlight window |
Command+Space | Opens the Spotlight menu |
F8 | Choose another desktop using Spaces |
Control+up-arrow (or F3, depending on your keyboard model) | Displays the Mission Control screen |
Control+down-arrow (or Control+F3, depending on your keyboard model) | Shows all open windows for the current application using Mission Control |
F11 (or Command+F3, depending on your keyboard model) | Hides all windows to display the Desktop using Mission Control |
F12 (or F4, depending on your keyboard model) | Displays your Dashboard widgets |
Space | Quick Look |
Strange-Looking Keys on the MacBook Keyboard
New to the Macintosh world? Some keys on the MacBook keyboard may be mystifying. Whether you're using Snow Leopard or an older version of Mac OS X, recognizing and using modifier keys will make your job easier. Here's a look at the modifier keys on both MacBook and desktop keyboards:
Mac OS X Maintenance Checklist
Maintenance is vital if you want to keep Mac OS X Lion in tip-top condition for as long as possible. Maintaining your MacBook keeps it running fast and smooth. Basic housekeeping includes regular back-ups plus some other, less familiar, tasks. Check this table often, or print it and keep a copy near your laptop!
. Install mac for pc. You need a fresh copy of macOS, a USB drive, free tools called UniBeast and MultiBeast, and compatible PC hardware.
Mac Maintenance Task | Schedule |
---|---|
Check for updates with Software Update | Once a day (automatic setting) |
Back up with Time Machine | Automatic |
Defragment (Micromat TechTool Pro/Prosoft Engineering Drive Genius 3) | Once a week |
Repair Disk Permissions (Disk Utility) | Once a week |
Delete Unnecessary User Accounts (System Preferences) | As necessary |
Scan for viruses (Intego VirusBarrier X6, ClamXav 2) | Automatic |
Check all volumes (Disk Utility/ Micromat TechTool Pro) | Once a week |
Check for the latest drivers for your hardware | Once a month (or after installing new hardware) |
Delete temporary Internet cache files (Prosoft Engineering Drive Genius 3) | Once a month |
Terminal is one of the most powerful macOS apps, which allows you to perform actions with different commands. Although Terminal Commands are seemingly difficult to carry out, believe me, they aren't. Once you know the commands, you can quickly perform tasks like shutting down your Mac or copying contents from one place to another right from your terminal
As the terminal is a CLI (Command Line Interface), the language we type in which interacts with the Mac, is known as bash, and commands are called bash commands. This tool is often overlooked because it is completely different from the GUI (Graphical User Interface ), which provides a rich interface. But today I've come up with a useful list of macOS Terminal Commands that you can learn easily and will help you do things instantly. So let's start.
11 Cool Terminal Commands for macOS – Mac User Should Try
#1. Hide/Unhide and View Files/Folders in Finder
macOS Terminal provides you an easy way to Hide, Unhide or View hidden files in the Finder via Terminal.
Open up the terminal from /Applications/finder or alternatively launch it from Spotlight.
To Hide any File/Folder:
Type in the following command :
Now, drag the file which you want to hide in the terminal and click Enter.
To View Hidden File/Folder:
Type defaults write com.apple.finder AppleShowAllFiles -bool TRUE in the Terminal.
Once done you need to restart the Finder, it can be done by this command.
If you ever wish to hide the sensitive files again, repeat all the commands by replacing TRUE with FALSE.
To Unhide any File/Folder:
Unhiding the file/folder is fairly easy, just replace 'hidden' with 'nohidden'.
Now, drag the file/folder which you want to unhide.
#2. Download Files Using Terminal
If you've a direct link of the file which you want to download, you can use the following commands to download the file using the Terminal on Mac.
Note: If you want to download the contents to any other directory replace 'downloads' with the directory name.
#3. Keep your Mac Awake
To prevent the mac from sleep, or showing screensaver after some inactivity use
If you want this command to get auto-disabled after a certain period of time, put the -t flag and specify the time in seconds as shown below.
Here, after 150000 seconds the command will get disabled, and the settings will be restored. Meanwhile, you can also use Cmd + C to terminate the command.
#4. Change Default Screenshot Format Type
By default, the screenshots are saved in .PNG format, but you can gain full control over the screenshots behavior.
To change default screenshot format type, use defaults write com.apple.screencapture type followed by type for e.g. : ( PNG, JPG, GIF, or PDF), then press Enter.
#5. Access iCloud Drive Using Terminal
To access the data from your iCloud Drive use the following command.
However, we already have a detailed guide on how you can access, copy, or move data to your iCloud Drive, which you can check out anytime.
#6. Shut Down or Restart Mac using Terminal
To shut down your mac with CLI (Command Line Interface) aka Terminal, use
Just as shut down, you can restart your Mac by
#7. View File Contents
To access the contents of any damaged or corrupted file, you can force the terminal to open it with this command.
Note: If you try to open an image file in the terminal, it will show some gibberish text.
#8. Speed Up Time Machine Backup
Whenever you're updating the Mac to the new version, backup's are assurity of your data and the easiest way to take a backup is to use Time Machine. But do you know? You can speed up time machine backup using the terminal by this command
#9. Add Spaces to your Dock
If you feel, your dock is crowded with a lot of apps. You can add up a little space between each app icon, here's how.
Type:
and hit Return.
Once done, type:
and press Return again
#10. Copy Contents from One Folder to Another
Copying contents from one place to another is fairly easy with Terminal, Type in the following command
Replace original with the current directory, and new with the name of the directory to which you want to copy the contents.
#11. Make your Mac Say Anything you want
Terminal Keyboard Shortcuts
This is the coolest command that macOS provides, you can make your Mac say anything you want, by using the say command followed by the words.
say 'hello, iGeeksblog'
Wrapping Up…
Open Terminal Mac Shortcut
There are lots of bash commands available for macOS. However, these were some of them. Do give them a try, and make more out of your Mac.
You might also like to read:
Uniblue driverscanner 2009 v2.0.0.1 final incl keygen crack key. Many downloads like Uniblue Driver Scanner 2009 may also include a crack, serial number, unlock code, cd key or keygen (key generator). If this is the case it is usually found in the full download archive itself. Uniblue Driverscanner 2009 V2.0.0.1 Final Incl Keygen Crack Installation Of Oracle 11g Release 2 On Solaris 10 X86 Download Novel Narnia 1-7 Bahasa Indonesia Pdf Installing Electrical In Alumawood Ultraman Fighting Evolution 3 Pc 2017 Torrent Fake Drivers License In California Download Free Apps Do Patch V21 Para Cs 1.6.
Which command did you like the most? Share your views in the comment section.
Mac Keyboard Shortcuts Cheat Sheet
Nikhil runs iGB's official YouTube channel. He is the official lensman of iGB and GB's small studio is Nikhil's playground, where he does all wonders with his remarkable signature. When Nikhil is not in his studio, you may spot him in a gourmet restaurant, chomping his way through some delicious food. He is a great traveler, who can go for long drives in search of good food.
Mac Terminal Shortcut Key
- https://www.igeeksblog.com/author/nikhil/How to Manage Website Settings in iOS 13 Safari on iPhone and iPad
- https://www.igeeksblog.com/author/nikhil/How to Fix 'iMessage Needs to Be Enabled to Send This Message' Issue
- https://www.igeeksblog.com/author/nikhil/
- https://www.igeeksblog.com/author/nikhil/How to Enable and Use Taptic Time on Apple Watch in watchOS 6