blob: f4dd28c42fc1ec14d1670787ba73f9b267a6a9fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install()
{
echo "----------------------------------------------------------"
echo "PSP Shrink comes with a command line and a GUI version."
echo "Usage command line version:"
echo "pspshrink compressionlevel inputfile outputfile"
echo "example: pspshrink 9 image.iso image.cso"
echo "To use GUI version call pspshrinkui or go to Utility menu."
echo "----------------------------------------------------------"
}
post_upgrade() {
post_install
}
op=$1
shift
$op $*
|