groups

name language licence
grep Perl Other
Comparison operators Other Other
Foreach loop Perl Other
Rename a lot of files in a directory 2 Perl Other
Repeating string using the x operator Perl Other
Softlink to multiple files Perl Other
Substitution of one part of a string with another Perl Other
Substring Perl Other

< 1 2 >



language: Other
licence: Other

Comparison operators

options: view full snippetsend to code collector
Numeric 

== 	Equal to
!= 	Not Equal to
> 	Greater than
< 	Less than
>= 	Greater than or Equal to
<= 	Less than or Equal to

String comparison

eq 	Equal to
ne 	Not Equal to
gt 	Greater than
lt 	Less than
	
(Continues...)