I would appreciate any help on this as I am new to TCL. I created a list of strings by doing a 'regexp -all -line -inline' + criterion on the output of a CLI command. Each element of this list now ends with a number and I want to sort the list on this particular numeric ending in each string but preserve the rest of the string. A close example would be to have to sort the output of the 'ls -la' command by the size of the files. I tried the following but it did not work:
lsort -command "regexp -lineanchor {\d+$}" -integer $list
After spending a day on trying to figure this out I decided to ask you guys. Would you be able to help?