Execute the output of one liner print

Hello
I wrote simple one liner that take RunTime .exe and link them to the output of the compilation output:
find ~/DevEnv/. -name "
.exe" | xargs ls -l | awk '{ x=split($9,a,"/"); print "ln -s " $9 " "a[x]}'

and it gives me the desire output , but how can I execute this ln command on every result of the one-liner
tnx

the best and safest way,

one_liner > out
sh out

You can check it first and
then you also have a record of what you did.