5.1k views
1 vote
What is double substitution

1 Answer

4 votes

Answer:

In Tcl the words in a command are always exposed to two layers of interpretation: First, Tcl interprets them and prepares them as arguments to a routine. Second, the routine interprets those arguments according to its own principles. double substitution occurs when Tcl performs substitutions on original command and a routine then performs substitutions on the resulting arguments. Care is required in these cases to avoid errors, including vulnerability to injection attacks.

Step-by-step explanation:

this probably wont help but here

User Dennie
by
7.3k points