mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 20:55:34 +02:00
Use variables instead of literal values: (#7531)
- there is no need to compare two string literals
This commit is contained in:
parent
9ad2a08a73
commit
c10199cd1a
1 changed files with 2 additions and 2 deletions
|
@ -21,11 +21,11 @@
|
||||||
|
|
||||||
- Check whether two strings are equal:
|
- Check whether two strings are equal:
|
||||||
|
|
||||||
`if {{string}} == {{string}} ({{echo Condition is true}})`
|
`if %{{variable}}% == {{string}} ({{echo Condition is true}})`
|
||||||
|
|
||||||
- Check whether two strings are equal without respecting letter case:
|
- Check whether two strings are equal without respecting letter case:
|
||||||
|
|
||||||
`if /i {{string}} == {{string}} ({{echo Condition is true}})`
|
`if /i %{{variable}}% == {{string}} ({{echo Condition is true}})`
|
||||||
|
|
||||||
- Check whether a file exist:
|
- Check whether a file exist:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue