blob: 0a33725ce07505ae3d6e066193fb144f26cff3e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
echo -------------------------[Depreciation warning]--------------------------------
echo Using \'sciv\' to start FreeSCI is deprecated and will not be supported in future
echo versions of FreeSCI. Instead, use the \'freesci\' binary.
echo -------------------------------------------------------------------------------
sleep 3
freesci $@
echo -------------------------[Depreciation warning]--------------------------------
echo Using \'sciv\' to start FreeSCI is deprecated and will not be supported in future
echo versions of FreeSCI. Instead, use the \'freesci\' binary.
echo -------------------------------------------------------------------------------
|