Вопрос

I know this command will paste the clipboard contents into a file:

xclip -out -selection clipboard >> file.txt

If I want to paste clipboard content into a variable like a string what do I do?

Это было полезно?

Решение

To assign the output of a command to a variable, you can use command substitution:

myvar=$( command )
echo "$myvar"
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top