我正在尝试修改hosts
文件。但它给出了错误:
sudo:没有tty存在且没有指定askpass程序。
我试过但它不起作用。如果有人知道,请帮助。 谢谢。
NSMutableString* pfConf = [NSMutableString stringWithContentsOfFile: @"/private/etc/pf.conf" encoding: NSUTF8StringEncoding error: nil];
if ([pfConf rangeOfString: @"/private/etc/pf.anchors/org.eyebeam"].location == NSNotFound) {
[pfConf appendString: @"\n"
"anchor \"org.eyebeam\"\n"
"load anchor \"org.eyebeam\" from \"/private/etc/pf.anchors/org.eyebeam\"\n"];
}
[pfConf writeToFile: @"/private/etc/pf.conf" atomically: true encoding: NSUTF8StringEncoding error: nil];