Tag: linux command

linux file properties and permissions

In Linux system, there are three most common file permissions: read (R), write (W) and execute (X) permissions. In Linux system, each file clearly defines...

linux iostat syntax and iostat examples

linux iostat command is an abbreviation for I/O statistics (input/output statistics). Iostat is a computer system monitor tool used to collect and show operating system...

Linux load average high, Java project

Linux load problems, in daily development, often suffer from us; below to sort out several factors that lead to changes in Linux load. Case 1:...

linux ps command and ps examples

Linux ps command is an abbreviation of Process Status. The linux ps command is used to list those processes currently running on the system. The...

Open SSH service in Ubuntu

SSH is divided into client (openssh-client) and server (openssh-server). If you just want to log in to SSH of other machines, you only need to...

AWK tutorial: awk group by count

When we are dealing with log files, we often need to count the number of times some keywords appear. For example, count the number of...

awk custom function and examples

Here, you need to use the awk custom function to implement the abs function. awk 'function abs(x){return (x < 0) ? -x : x;} {print...

AWK tutorial: awk regex example

What Is Regex? Types of Regex:BRE and ERE. Awk using BRE regex Patterns, Special Characters; Awk using ERE regex Patterns, matches the start...