week – POFTUT

Javascript Date Types and Functions

Date is used to store date related types. There are a lot of date functions to operate with date variables. Date holds year,month,day,hour,minute,second and millisecond. var d=new Date(); We have created new d variable with date type. 2016-10-27T03:41:55.155Z This is the value holded d  Get Day of Week The day number of the week can be … Read more

How To Remove Files Older Than 1 Day/1 Week/1 Month Recursively

We are decent with scripting language bash and not now hot to remove older files for example 1 day. rm command do not have this type of option to use easily. I think adding this type of feature make a lot of system administrators more happy. Remove Older Than 1 Day We will use following … Read more