commandline session $ 4.2.36 50 548—> cat test-open.c #include #include #include main() { int fd; fd = open( “text” , O_CREAT); } $ 4.2.36 51 549—> gcc test-open.c $ 4.2.36 52 550—> ./a.out $ 4.2.36 53 551—> ls a.out test-open.c text $ 4.2.36 54 552—> cat text cat: text: Permission denied $ 4.2.36 55 553—> …