gpt4 book ai didi

macos - 使用简单的 bash 脚本切换 AppleShowAllFiles?

转载 作者:行者123 更新时间:2023-11-29 09:22:23 25 4
gpt4 key购买 nike

前言:我是一个十足的 bash 菜鸟。

我想编写一个简单的脚本来在我的 mac 上切换 AppleShowAllFiles。

我是这样想的:

#!/bin/bash
#toggle AppleShowAllFiles

if defaults read com.apple.finder AppleShowAllFiles == TRUE
then
defaults write com.apple.finder AppleShowAllFiles FALSE
else
defaults write com.apple.finder AppleShowAllFiles TRUE
fi

killall Finder

这似乎没有用,但我相信你们中的一个人可以在 1 秒内解决它;请开始抨击并帮助迷失的灵魂!

谢谢。

最佳答案

这是您脚本的固定版本:

#!/bin/bash
#toggle AppleShowAllFiles

current_value=$(defaults read com.apple.finder AppleShowAllFiles)
if [ $current_value = "TRUE" ]
then
defaults write com.apple.finder AppleShowAllFiles FALSE
else
defaults write com.apple.finder AppleShowAllFiles TRUE
fi

killall Finder

您脚本的 if 语法有点……好吧,不确定。这就是所有需要更改的部分。

关于macos - 使用简单的 bash 脚本切换 AppleShowAllFiles?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5206008/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com