mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
5 lines
101 B
Bash
5 lines
101 B
Bash
|
#!/bin/sh
|
||
|
initpath=$(pwd)
|
||
|
(cd $1; tar -cf - $(find . -name "$2") ) | (cd $3; tar -xf -)
|
||
|
cd $initpath
|