
clip
List of commands for clip:
-
clip:tldr:0c7e3 clip: Pipe command-line output to the Windows clipboard.$ ${dir} | cliptry on your machineexplain this command
-
clip:tldr:6aa8f clip: Copy the contents of a file to the Windows clipboard.$ clip < ${path\to\file-ext}try on your machineexplain this command
-
clip:tldr:d73b5 clip: Copy text without a trailing newline to the Windows clipboard.$ echo | set /p="some text" | cliptry on your machineexplain this command
-
clip:tldr:fc755 clip: Copy text with a trailing newline to the Windows clipboard.$ echo ${some text} | cliptry on your machineexplain this command