Is there a way to assign the clipboard value to a variable, then append the variable to new text with a batch file?
Here is a copy of what I'm attempting to do. In my example, "world" represents the value that the clipboard contains.
@echo off
set myclip=world
(
echo hello %myclip%
)| clip