Homepage
Code Log
Sign inGet started
  • Home
  • JAVA
  • ANDROID
  • Algorithm
  • SHELL
  • Data
  • Other
Tagged in

Shell

Code Log
Code Log
Java, Android, Shell, Algorithm …
More information
Followers
7
More, on Medium
  • Shell
Go to the profile of Chris
Chris in Code Log
Oct 13

Find ubuntu environment variables

We know that echo $PATH will print all of the environment variables. There are several places we can put the path variables in.

/home/<username>/.profile

Read more…
Go to the profile of Chris
Chris in Code Log
Jul 24

AWK example

AWK is the abbreviation of three developers’ names.

Function: analyze the file line by line based on pattern. 
Syntax:


awk '
BEGIN{}
/pattern/{}
END{}
'
Read more…