#!/bin/bash
#
# sudo find /Library/Preferences/SystemConfiguration -type f -not -name "com.apple.Boot.plist" | xargs -I {} sudo rm -f {} #似乎不能 百分百 通用
# ls /Library/Preferences/SystemConfiguration/ | grep -v "com.apple.Boot.plist" | xargs -I {} sudo rm -f "/Library/Preferences/SystemConfiguration/{}" #应该也行
cd /Library/Preferences/SystemConfiguration/
ls | grep -v "com.apple.Boot.plist" | xargs -I {} sudo rm -f {}