add log
This commit is contained in:
parent
e7a85e5e00
commit
b015a3e8e2
12 changed files with 116 additions and 63 deletions
|
@ -39,7 +39,7 @@ A typical Linux system has, among others, the following directories:
|
|||
| `/usr/lib` | Object libraries, including dynamic libraries, plus some executables which usually are not invoked directly. More complicated programs may have whole subdirectories there. |
|
||||
| `/usr/share` | This directory contains subdirectories with specific application data, that can be shared among different architectures of the same OS. |
|
||||
| `/usr/share/doc` | Documentation about installed programs (optional). |
|
||||
| `/usr/share/man` | [Manual pages](../applications/cli/system/man.md) go here in subdirectories according to the man page sections. |
|
||||
| `/var` | This directory contains files which may change in size, such as spool and log files. |
|
||||
| `/usr/share/man` | [Manual pages](../applications/cli/system/man.md) go here in subdirectories according to the man page sections. |
|
||||
| `/var` | This directory contains files which may change in size, such as spool and [log](../dev/Log.md) files. |
|
||||
| `/var/cache` | Data cached for programs. |
|
||||
| `/var/log` | Miscellaneous log files. |
|
||||
| `/var/log` | Miscellaneous [log](../dev/Log.md) files. |
|
||||
|
|
|
@ -7,7 +7,7 @@ A Unix timestamp is a way to represent a point in time, defined as the number of
|
|||
|
||||
## Usage
|
||||
Unix timestamps are commonly used in computing systems to record and calculate time-based events. They are particularly useful for tasks such as:
|
||||
- Logging events: Recording the time when an event occurs.
|
||||
- [Logging](../dev/Log.md) events: Recording the time when an event occurs.
|
||||
- Date arithmetic: Calculating time differences between two Unix timestamps.
|
||||
- Scheduling tasks: Determining when a task should be executed based on a Unix timestamp.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue