in reply to Re^2: Sort options
in thread Sort options

Did you first look for qw{} in the documentation/perl book/man pages before asking here?

qw is a way to specify literal lists. @a= qw{ a b c } is equivalent to  @a= ('a','b','c');. If you already have an array, you don't need qw.