假设我的剪贴板中有一个 URL,如果我在终端上运行:
xclip -o
它会回显域,我想使用此内容作为变量放在命令上:
google-chrome --enable-plugins -incognito "www.clipboard_content_here.com"
有什么办法可以做到这一点?
答案1
尝试这个
google-chrome --enable-plugins -incognito "www.$(xclip -o).com"
假设我的剪贴板中有一个 URL,如果我在终端上运行:
xclip -o
它会回显域,我想使用此内容作为变量放在命令上:
google-chrome --enable-plugins -incognito "www.clipboard_content_here.com"
有什么办法可以做到这一点?
尝试这个
google-chrome --enable-plugins -incognito "www.$(xclip -o).com"