File Access and Manipulation - Part B - Time stamps

  Time Stamps
(file mod) (file access) (inode mod)
Commands ls -l a2 ls -lu a2 ls -lc a2
  • ls > a2
  • 11 12 13
  • touch a2
  • 21 22 23
  • cat a2
  • 31 32 33
  • ln a2 a2.h
  • 414243
  • ln -s a2 a2.s
  • 515253
  • ls -l >> a2
  • 616263
  • cp a2 a2.c
  • 717273
  • mv a2 a2.m
  • 81 82 83

    For this exercise, you are going to run a series of commands on a file and observe which time stamps are affected by which commands.