
On this page you find all important commands for the CLI tool [[. If the
command you are looking for is missing please ask our AI.
[[
List of commands for [[:
-
shell:file:exists Check if a file exists$ [[ -e ${file} ]]try on your machineexplain this command
-
shell:warp:1242c Check if string length is non-zero$ [[ -z ${string} ]]try on your machineexplain this command
-
shell:warp:221cc Check if two numbers are equal$ [[ ${integer_a} -eq ${integer_b} ]]try on your machineexplain this command
-
shell:warp:25e37 Check if file exists and is executable by the current process$ [[ -x ${file} ]]try on your machineexplain this command
-
shell:warp:49c1f Check if string length is zero$ [[ -n ${string} ]]try on your machineexplain this command
-
shell:warp:7a0f1 Check if a number is less than or equal to another number$ [[ ${integer_a} -le ${integer_b} ]]try on your machineexplain this command
-
shell:warp:8c02a Check if a number is greater than another number$ [[ ${integer_a} -gt ${integer_b} ]]try on your machineexplain this command
-
shell:warp:8cdd9 Check if file exists and is readable by the current process$ [[ -r ${file} ]]try on your machineexplain this command
-
shell:warp:98a8e Check if file exists and has a size greater than zero$ [[ -s ${file} ]]try on your machineexplain this command
-
shell:warp:ac282 Check if file exists and is writable by the current process$ [[ -w ${file} ]]try on your machineexplain this command
-
shell:warp:b0313 Check if a number is less than another number$ [[ ${integer_a} -lt ${integer_b} ]]try on your machineexplain this command
-
shell:warp:b0b01 Check if a file exists and is a regular file$ [[ -f ${file} ]]try on your machineexplain this command
-
shell:warp:c137d Check if two numbers are not equal to each other$ [[ ${integer_a} -ne ${integer_b} ]]try on your machineexplain this command
-
shell:warp:da280 Check if two strings are equal to each other$ [[ ${string_1} = ${string_2} ]]try on your machineexplain this command
-
shell:warp:e23a5 Check if a number is greater than or equal to another number$ [[ ${integer_a} -ge ${integer_b} ]]try on your machineexplain this command
-
shell:warp:f2154 Check if two strings are not equal to each other$ [[ ${string_1} != ${string_2} ]]try on your machineexplain this command
-
warp:shell:file:exists:and:is:directory Check if a file exists and is directory$ [[ -d ${file} ]]try on your machineexplain this command