12 lines
132 B
Bash
Executable File
12 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Pika Kernel - Copying Output"
|
|
|
|
cd ..
|
|
rm ./linux-libc*.deb
|
|
|
|
for f in *.deb;
|
|
do
|
|
cp $f ./output/mantic_$f
|
|
done
|