diff --git a/cheat/macos.md b/cheat/macos.md new file mode 100644 index 0000000..fffe1fc --- /dev/null +++ b/cheat/macos.md @@ -0,0 +1,7 @@ +### List what launch scripts are currently loaded (MacOs) + +`launchctl list | wc -l` + +### Removing color from command output ([src](https://stackoverflow.com/questions/17998978/removing-colors-from-output)) + +`somescript | sed $'s,\x1b\\[[0-9;]*[a-zA-Z],,g'`