blob: 14d116b0b45b821fb9955b440b1467fa146e5cd1 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# author: Santhosh Thottingal <santhosh.thottingal@gmail.com>
echo "Compiling...."
strfile fortune-ml fortune-ml.dat
echo "Installing..."
cp fortune-ml.dat /usr/share/games/fortune/
cp fortune-ml /usr/share/games/fortune/
echo "Done...!"
|