2022-04-12 12:38:01 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-05-02 12:53:21 -04:00
|
|
|
echo "Glacier Package Manager v1.0"
|
2022-04-12 12:38:01 -04:00
|
|
|
echo "====================================================================="
|
|
|
|
echo "An extremely light and fast ackage manager written entirely in shell."
|
|
|
|
echo ""
|
|
|
|
echo "glacier-install - Install a package"
|
|
|
|
echo "glacier-update - Update a package"
|
|
|
|
echo "glacier-remove - Remove a package"
|
|
|
|
echo "glacier-query - Query a package"
|
|
|
|
echo "glacier-cache - Add a package to the cache"
|
|
|
|
echo "glacier-cache-install - Install a cached package"
|
|
|
|
echo "glacier-cache-clear - Clear Glacier's cache"
|
|
|
|
echo ""
|
2022-05-05 10:23:09 -04:00
|
|
|
echo "IMPORTANT REMINDER - Glacier will ask you which package to install, glacier-install <package> will not work."
|
2022-04-12 12:38:01 -04:00
|
|
|
echo ""
|
2022-05-05 10:23:09 -04:00
|
|
|
echo "Glacier - Copyright (C) 2022 Everest Linux"
|
|
|
|
echo "This program comes with ABSOLUTELY NO WARRANTY; for details see section 15 of the GNU GPL v3."
|
2022-05-06 07:51:19 -04:00
|
|
|
echo "This is free software, and you are welcome to redistribute it under certain conditions; see the GNU GPL v3 for details."
|