4 lines
65 B
Bash
4 lines
65 B
Bash
|
#!/bin/sh
|
||
|
echo "copy '$(ls *.so)' to /_libs/"
|
||
|
cp -f *.so /_libs/
|