1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/headergenerator.sh
nowrep 56397717f9 Add Tab icon next to last tab
Also uploaded scripts for various jobs related to QupZilla to github
(scripts folder)
2011-10-23 14:44:18 +02:00

12 lines
245 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
## headers.tar.gz generator
cd ../src
mkdir includes
find . -name '*.h' -exec cp {} includes/ \;
tar -cvzf headers.tar.gz includes/
rm -r includes/
mv headers.tar.gz ../headers.tar.gz
read -p "Press [ENTER] to close terminal"
exit