What is the meaning of this statement?

Temp=${PATH_PROC_USER:=""}

Thanks for your time and answer.

Set a variable called TEMP to the value of the variable PATH_PROC_USER if PATH_PROC_USER has a value. If PATH_PROC_USER does not have a value (is null), set Temp to a null string (the ""). Which is what it is already.

1 Like

Thanks for answering

sort -r -t";" -k1,1 -k15,15

what r is doing here?

Reversing the sort.

1 Like