a script to use xclip from .txt file

#!/bin/sh
ls -s Download > a.txt
xclip -sel clip < a.txt
rm -rf a.txt

你可能感兴趣的:(useful,shell,script,学习)