1,查看某个目录是否有读写操作
lsof /tmp
2,查找替换文件(mac)
grep -rl "192.168" --include="*podspec" ./ | xargs sed -i "" "s/192.168/10.100/g"
3. 重写某个文件
nohup command > myout.file 2>&1 &
1,查看某个目录是否有读写操作
lsof /tmp
2,查找替换文件(mac)
grep -rl "192.168" --include="*podspec" ./ | xargs sed -i "" "s/192.168/10.100/g"
3. 重写某个文件
nohup command > myout.file 2>&1 &