mysqld 发表于 2015-12-29 13:26:48

Mac OS X 窗口操作快捷键

  Finder 部分
组合键快捷键
Command-A选中最前面的 Finder 窗口中的所有项(如果未打开任何窗口则选中桌面内容)
Shift-Command-C打开“电脑”窗口
Option-Command-F导航到已打开的 Spotlight 窗口中的搜索栏
Shift-Command-K打开“网络”窗口
Command-M最小化窗口
Option-Command-M最小化所有窗口
Command-N新建 Finder 窗口
Option-Command-T在 Finder 窗口中隐藏工具栏/显示工具栏
Command-W关闭窗口
Option-Command-W关闭所有窗口
Command-`(重音符键 – 美式英语键盘布局中 Tab 键的上方)循环显示打开的 Finder 窗口
Control-Command-上箭头在新窗口中打开所含文件夹
应用程序和其他 Mac OS X 键盘命令
组合键快捷键
Option-Command-空格键显示 Spotlight 搜索结果窗口(如果安装了多语种,则可能循环显示某一语系下的键盘布局和输入法)
Control-F4聚焦活跃窗口或下一个窗口
Shift-Control-F4聚焦上一个活跃窗口
Control-F7临时覆盖窗口和对话框中的当前键盘控制模式
F9拼贴或取消拼贴所有打开的窗口
F10拼贴或取消拼贴当前活跃应用程序中所有打开的窗口
F11隐藏或显示所有打开的窗口
Command-`激活最前面的应用程序中下一个打开的窗口
Shift-Command-`激活最前面的应用程序中上一个打开的窗口
Option-Command-`聚焦窗口抽屉
Command-:显示“拼写”窗口
Command-,打开最前面的应用程序的偏好设置窗口(前提是应用程序支持此快捷键)
Command-A高亮显示文稿或窗口中的所有项,或高亮显示文本栏中的所有字符
Shift-Command-C显示“颜色”窗口
Command-F打开“查找”窗口
Command-H隐藏当前正在运行的应用程序窗口
Option-Command-H隐藏所有其他正在运行的应用程序窗口
Option-Command-I显示检查器窗口
Command-M将活跃窗口最小化至 Dock
Option-Command-M将活跃应用程序的所有窗口最小化至 Dock
Command-T显示“字体”窗口
Command-W关闭最前面的窗口
Shift-Command-W关闭文件及其关联窗口
Option-Command-W不退出应用程序直接关闭其所有窗口
  
  命令行
  mac系统中的terminal 就相当于windows系统中的dos命令窗口,但是terminal窗口中的命令特别的强大,如果我们不能使用该命令窗口的话,我们将不能成为mac的黑客一族(哈哈,我当然不是什么mac黑客了)。


启动finder,在出现的窗口的左列表框的places中选择applications,进一步选择utilities文件夹进入,我们会开到一个黑色屏幕图标的terminal。双击启动。显示的内容如下:

Last login: Tue Aug 18 22:32:29 on ttys000
yan-lis-macbook-pro:~ yanli$

其中~表示的是当前用户的根目录。
我们可以使用ls命令看当前目录下有什么东东:
yan-lis-macbook-pro:~ yanli$ ls
DesktopMoviesSend Registration
DocumentsMusicSites
DownloadsPictures
LibraryPublic
yan-lis-macbook-pro:~ yanli$

如果我们进入到其他目录太深 ,我们可以使用cd ~ 立即会到自己的根目录下:

Last login: Tue Aug 18 22:32:29 on ttys000
yan-lis-macbook-pro:~ yanli$ ls
DesktopMoviesSend Registration
DocumentsMusicSites
DownloadsPictures
LibraryPublic
yan-lis-macbook-pro:~ yanli$ cd Library/
yan-lis-macbook-pro:Library yanli$ ls
Address Book Plug-InsDictionariesPreferencePanes
Application SupportFavoritesPreferences
AssistantsFontCollectionsPrinters
AudioFontsPubSub
Autosave InformationInput MethodsSafari
CachesInternet Plug-InsScreen Savers
CalendarsKeyboard LayoutsSounds
ColorPickersKeychainsVoices
CompositionsLogsiMovie
CookiesMail
yan-lis-macbook-pro:Library yanli$ cd ~
yan-lis-macbook-pro:~ yanli$ ls
DesktopMoviesSend Registration
DocumentsMusicSites
DownloadsPictures
LibraryPublic
yan-lis-macbook-pro:~ yanli$

使用cd..可以回退到当前目录的父目录:

yan-lis-macbook-pro:~ yanli$ cd ..
yan-lis-macbook-pro:Users yanli$ ls
Sharedyanli
yan-lis-macbook-pro:Users yanli$

如果你对一个命令的用法不了解,你可以使用:
command --help 或者 man command
这些就是最基本的操作,如果你是linux高手,那么你一定会使用很多命令吧!
页: [1]
查看完整版本: Mac OS X 窗口操作快捷键