Skip to content

Commit 067986f

Browse files
committed
Update README.md
1 parent 90ccd18 commit 067986f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# commandline
2-
74 useful bash scripts collection on Mac OSX.(实用的命令行脚本)
2+
75 useful bash scripts collection on Mac OSX.(实用的命令行脚本)
33
![](https://github.com/chinsyo/commandline/actions/workflows/update_readme.yml/badge.svg)
44
* adb-bulk-uninstall
55
```bash
@@ -162,6 +162,18 @@ c++filt __Z4mainiPPc
162162

163163
```
164164

165+
* dev-tools-security
166+
```bash
167+
#! /bin/bash
168+
169+
# If you didn't enable Developer Mode using Xcode you will be asked to authorize the debugger every time you use it. To enable Developer Mode and only have to authorize once per session use:
170+
sudo /usr/sbin/DevToolsSecurity -enable
171+
172+
# You might also need to add your user to the developer group:
173+
sudo dscl . append /Groups/_developer GroupMembership $(whoami)
174+
175+
```
176+
165177
* display-shared-libraries
166178
```bash
167179
#! /usr/bin/bash

0 commit comments

Comments
 (0)