Horje
bash if larger than Code Example
bash if larger than
# In bash, you should do your check in arithmetic context:

if (( a > b )); then
    ...
fi

# For POSIX shells that don't support (()), you can use -lt and -gt.

if [ "$a" -gt "$b" ]; then
    ...
fi




Shell

Related
uninstall kubeadm Code Example uninstall kubeadm Code Example
Column count of mysql.proc is wrong. Expected 20, found 16. The table is probably corrupted Code Example Column count of mysql.proc is wrong. Expected 20, found 16. The table is probably corrupted Code Example
open wsl as root Code Example open wsl as root Code Example
how to enable mod_headers in apache ubuntu Code Example how to enable mod_headers in apache ubuntu Code Example
close tcp port on mac Code Example close tcp port on mac Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11