Linux Small Knowledge points

Source: Internet
Author: User

1: The current directory is more important than several files

... anaconda-ks.cfg.bash_history.bash_logout.bash_ Profile.bashrc.cshrcinstall.loginstall.log.syslog.tcshrc.viminfo

2: Set environment variable $PATH usually defined in/etc/profile or ~/.BASHRC

Export   path= "Path:/home/user/bin" or path= "Path:/home/user/bin"   export PATH

  

2: Format substitution symbol

printf "%-5s%-10s%-4s\n" No Name Mark
printf "%-5s%-10s%-4.2f\n" 1 Sarath 80.3456

%-5s indicates a string substitution with a left-aligned format and a width of 5 (-left-justified). If not used-Specifies the alignment, the string is in the right-justified form.

%-4.2f, where. 2 specifies that 2 decimal digits are reserved Note that there is a newline character after each line of format string \ n.

4: Color Printing

Echo-e "\E[1; 42m Green Background \e[0m "

To set the color background, the frequently used color code is: reset = 0, black = 40, red = 41, green = 42, yellow = 43, blue = 44, magenta = 45, cyan = 46, white = 47.

5: Get environment variables for a process

Pgrep my #获取PID for example for 12500cat/proc/12500/environ

  

Linux Small Knowledge points

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.