`

mac 显示隐藏的文件

mac 
阅读更多

It seems like every day I search Google for the command to show hidden files on Mac OS X, not to mention Googling for the command to then hide those hidden files a few minutes later.

Today I decided to make a short and easy to remember alias to speed up the process. All I need do now is type showFiles and hideFiles whenever I need to show/hide OS X’s hidden files. Here’s how you can do it too.

Show/Hide Hidden Files the Long Way

The long way to show hidden Mac OS X files is as follows:

  1. Open Terminal found in Finder > Applications > Utilities
  2. In Terminal, paste the following: defaults write com.apple.finder AppleShowAllFiles YES
  3. Press return
  4. Hold ‘alt’ on your keyboard, then right click on the Finder icon in the dock and click Relaunch.
Relaunch Finder by right clicking the Finder Icon whilst hosting the `alt` key

Relaunch Finder by right clicking the Finder Icon whilst hosting the ‘alt’ key

This will show all hidden files. To hide them again, follow the same steps but replace the Terminal command with:

defaults write com.apple.finder AppleShowAllFiles NO

It’s not the longest set of instructions or the biggest command to commit to memory but if you’re doing this a lot, it’s worth spending a few minutes now to save yourself a lot more time in the future.

Show/Hide Hidden Files using Terminal Aliases

A Terminal alias is a name or shortcut for one or multiple commands. Using an easy to remember alias, we can turn the above four step process into just one.

An alias can be made temporarily (just for the use of one terminal session) or permanently. As we want this to be a shortcut used now and in the future, let’s make it permanent:

  1. Open Terminal found in Finder > Applications > Utilities
  2. In Terminal, paste the following: sudo nano ~/.bash_profile
  3. Enter your Mac’s administration password if required, then hit return
  4. At the bottom of the open .bash_profile file, paste the following: alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
  5. Below that, paste the following: alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'

  6. Press ctrl + O and hit return to save the file
  7. Press ctrl + X to exit the file and return to the command line
  8. In Terminal, paste the following: source ~/.bash_profile to refresh your profile and make the aliases available
Adding aliases to .bash_profile via Terminal

Adding aliases to .bash_profile via Terminal

Now when you want to show hidden files, all you need type in Terminal isshowFiles, then hideFiles when you want to hide them.

If you want to modify the behaviour or alias names, let’s take a closer look at the commands you just added:

alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES;
killall Finder /System/Library/CoreServices/Finder.app'

alias tells Terminal we’re adding a new alias.

showFiles is the name of the alias. Change this to what you wish.

We then give the alias two commands. The first being:

defaults write com.apple.finder AppleShowAllFiles YES;

This is the command to show hidden files and is ended with a semi-colon ; so we can then use the second command:

killall Finder/System/Library/CoreServices/Finder.app

This will relaunch the Finder (to replicate the step of holding ‘alt’ on the keyboard then right clicking the Finder icon in the dock).

Conclusion

With the aliases set up, all you need do in the future is type showFiles andhideFiles to show and hide Mac OS X’s hidden files respectively.

Aliases can be used to speed up your interaction with the Terminal. Set up an alias for navigating to your most used directories, to commit to a GitHub repo and so on.

分享到:
评论

相关推荐

    mac显示隐藏文件

    在"雪豹"(Snow Leopard)这个版本的Mac OS X系统中,显示隐藏文件有几种方法,下面将详细解释这些方法。 1. 终端命令行法: 打开“应用程序”>“实用工具”>“终端”。在终端窗口中输入以下命令并按回车键: ```...

    Mac显示隐藏文件小工具

    无论是在做开发还是使用mac系统,经常需要显示隐藏文件,有时候又觉得隐藏文件太碍眼了,所以总是在两条命令行之间切来切去的: 显示mac隐藏文件: defaults write com.apple.finder AppleShowAllFiles YES 隐藏mac...

    Mac 显示隐藏文件的方法

    ### Mac 显示隐藏文件的方法 在Mac OS X操作系统中,隐藏文件或文件夹是一种常见的功能,主要用于保护系统文件不被用户误操作而修改或删除。然而,在某些情况下,用户可能需要查看这些隐藏的文件来进行一些高级操作...

    MAC显示隐藏文件小程序

    本文将详细介绍如何在Mac上显示隐藏文件,并着重讲解"MAC显示隐藏文件小程序"——ShowHiddenFiles.app的使用。 首先,让我们理解一下Mac系统中隐藏文件的基本概念。在Finder中,默认情况下,系统会隐藏一些以"....

    Mac显示隐藏文件命令.docx

    标题中的“Mac显示隐藏文件命令”指的是在苹果Mac操作系统中,通过使用终端命令来显示通常不可见的隐藏文件和文件夹的方法。Mac系统默认情况下会隐藏一些系统文件和配置文件,以保持桌面和Finder窗口的整洁。然而,...

    Mac显示隐藏文件小工具源码

    无论是在做开发还是使用mac系统,经常需要显示隐藏文件,有时候又觉得隐藏文件太碍眼了,所以总是在两条命令行之间切来切去的: 显示mac隐藏文件: defaults write com.apple.finder AppleShowAllFiles YES 隐藏mac...

    Mac系统下显示隐藏文件

    1. **显示隐藏文件** - **Terminal命令**:打开“终端”(Terminal),输入以下命令并回车: ``` defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder ``` 这将在Finder中显示所有隐藏...

    显示或者隐藏MAC系统文件

    标题"显示或者隐藏MAC系统文件"指的是使用AppleScript来切换Mac系统中隐藏文件的可见性。在默认情况下,Mac系统会隐藏一些系统文件和文件夹,如Library、资源库等内容,以保持桌面的整洁和避免用户意外修改重要系统...

    Mac切换显示隐藏文件小程序

    标题提到的"Mac切换显示隐藏文件小程序"提供了一种便捷的方式,通过Apple Script来快速切换显示隐藏文件的状态,避免了使用命令行工具的复杂步骤。 Apple Script是Apple公司推出的一种编程语言,专门用于自动化Mac ...

    显示mac隐藏文件

    本文将详细介绍如何在Mac上显示隐藏文件,并提供两个实用工具——"恢复隐藏文件.app"和"显示隐藏文件.app"的使用方法。 首先,我们可以通过终端命令来显示隐藏文件。打开Mac的“终端”应用(位于/Applications/...

    显示隐藏文件

    在Mac OS操作系统中,显示隐藏文件的步骤如下: 1. 打开Finder:点击Dock上的Finder图标或者使用快捷键`Command+空格`启动Spotlight搜索,输入Finder并回车。 2. 打开Finder的偏好设置:点击Finder菜单,然后选择...

    MAC系统显示隐藏秕系统文件小工具

    标题中的“MAC系统显示隐藏文件小工具”指的是在Mac操作系统中查看通常被隐藏的系统文件和文件夹的应用程序。在Mac OS中,有些系统文件为了保持系统的稳定性和安全性,默认是不可见的。这个小工具就是为了帮助用户...

    MAC显示&隐藏文件

    使用"MAC显示&隐藏文件"这款小工具,用户可以快速地切换显示隐藏文件的状态,无需使用命令行工具如Terminal。这使得非技术背景的用户也能方便地操作,提高了工作效率。这款应用可能提供了简洁的界面,通过一个简单的...

    显示_恢复隐藏文件MacX

    1. **通过Finder偏好设置显示隐藏文件**: - 打开Finder,然后选择菜单栏上的"Finder" -> "偏好设置"。 - 在弹出的窗口中,点击"高级"选项卡。 - 在"显示"部分,勾选"显示所有文件和文件夹"。这将使所有隐藏文件...

    Mac查看隐藏文件App

    使用"ToggleHiddenFiles.app",用户可以快速地在显示隐藏文件和隐藏文件之间切换。这在查找丢失的文件、排查系统故障或者清理不必要的隐藏文件时非常有用。例如,如果你发现桌面图标排列出现问题,可能需要查看隐藏...

    MAC中显示隐藏文件和不显示隐藏文件的方法(超简单)

    显示隐藏文件的最简便方法是通过终端(Terminal)执行一条命令。打开终端,可以在Spotlight搜索中输入“Terminal”找到它。在终端窗口中输入以下命令: ```bash defaults write ...

    显示隐藏mac文件

    对于普通用户而言,这些隐藏文件的存在是透明的,但在特定情况下(如软件调试、系统维护等),显示隐藏文件变得非常重要。 ### 显示隐藏文件的方法 #### 终端命令行方式 通过终端(Terminal)可以非常方便地切换...

    Mac如何显示隐藏文件.docx

    以下是如何在Mac上显示隐藏文件的详细步骤: 一、适用于OS X Mavericks及更高版本(包括OS X Yosemite)的方法: 1. 打开“终端”应用程序。可以在Launchpad或Spotlight搜索中找到“Terminal”并启动。 2. 在终端...

    mac版显示隐藏特殊文件小工具ShowAllFiles

    mac显示隐藏特殊文件小工具ShowAllFiles.dmg,适用MOS10.8+

    mac快速切换隐藏文件

    在Mac上,你可以通过以下几种方式来快速切换显示隐藏文件: 1. **命令行工具**:打开终端(Terminal),这是Mac内置的一个强大的命令行界面。输入以下命令并按回车键: ``` defaults write ...

Global site tag (gtag.js) - Google Analytics