Go to Disk Utility and select disk where mac is running and hit "Repair Disk Permissions".
The issue might be with the Virtual memory permissions and this could solve the issue.
import sys def merge_files(argv): f1 = open(argv[0], "r") f2 = open(argv[1], "r") lines1 = f1.readlines() lines2 = f2.readlines() count = 0 for line in lines1: line = line.rstrip() + lines2[count].rstrip() print line count = count + 1 if __name__ == "__main__": merge_files(sys.argv[1:]) |
Caching is a technique used to store frequently accessed data in a temporary storage layer to improve system performance and reduce latency....