2018-4-18 Linux Learning Notes

Source: Internet
Author: User

20.5 logical judgments in shell scripts

Format 1:if condition; Then statement; Fi

Format 2:if condition; Then statement; else statement; Fi

Format 3:if ...; Then ...; Elif ...; Then ...; else ...; Fi

Logical judgment Expression:
If [$a-gt $b];
If [$a-lt 5];
If [$b-eq 10]
-GT (>); -lt (<); -ge (>=); -le (<=);-eq (= =); -ne (! =) Note that there are spaces everywhere

can use && | | Combine multiple conditions

If [$a-gt 5] && [$a-lt 10]; Then

If [$b-gt 5] | | [$b-lt 3]; Then

20.6 File Directory property judgment

[-F file] Determines if it is a normal file, and there is

[-D file] Determines if it is a directory and exists

[-E file] to determine whether files or directories exist

[-R File] to determine if the document is readable

[-W file] Determines whether the file is writable

[-X file] Determines whether the file is executable

20.7 If special usage

If [-Z ' $a '] This indicates what happens when the value of variable A is empty

If [-n ' $a '] means that the value of variable A is not empty

If Grep-q ' 123 ' 1.txt; Then what happens if the 1.txt contains a ' 123 ' row

if [!-e file]; Then what happens when the file doesn't exist?
if (($a \<1)); Then ... Equivalent to if [$a-lt 1]; Then ...
Symbols such as <,>,==,!=,>=,<= cannot be used in []

20.8/20.9 Case Judgment

Format case variable name in
Value1
Command
;;
value2)
Command
;;
*)
Commond
;;
Esac
In a case program, you can use a |, meaning, or means in a condition, such as
2|3)
Command
;;

2018-4-18 Linux Learning Notes

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.