Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between find options -cmin and -amin?

Reading Finding the files which are not accessed/modified in last 30min? I'm puzzled by the difference between change time and access time.

Could you elaborate on the difference and source your statements?

like image 798
Édouard Lopez Avatar asked Jul 25 '14 11:07

Édouard Lopez


People also ask

What are the 4 types of options?

There are four basic options positions: buying a call option, selling a call option, buying a put option, and selling a put option. With call options, the buyer is betting that the market price of an underlying asset will exceed a predetermined price, called the strike price, while the seller is betting it won't.

What is the difference between options and stock options?

What's the difference between stocks and options? The biggest difference between options and stocks is that stocks represent shares of ownership in individual companies, while options are contracts with other investors that let you bet on which direction you think a stock price is headed.

What are different types of options?

There are two types of options contract: puts and calls. Both can be purchased to speculate on the direction of the security or hedge exposure. They can also be sold to generate income.


1 Answers

Based on Find the Time of Access, Change & Modify File in Linux & Unix:

  • Access is referring to the last time the file was read, view or displayed (e.g. more, less) ;
  • Modify means when was the last the file content was modified (e.g. vi) ;
  • Change term was determined by when was the last meta data of the file been modified (e.g. chmod, chown).
like image 119
Édouard Lopez Avatar answered Oct 21 '22 22:10

Édouard Lopez