11 lines
196 B
Bash
11 lines
196 B
Bash
mkdir -p deploy
|
|
|
|
ldd touchsensor.exe \
|
|
| awk '/=> \// {print $3}' \
|
|
| grep -vi 'windows' \
|
|
| sort -u \
|
|
| while read -r dll; do
|
|
echo "拷贝 $dll"
|
|
cp -u "$dll" deploy/
|
|
done
|