I've developed a few Bash scripts on a LFS system which should now be made to work on a minimal installation of Sun Solaris 10. Is there a guide somewhere with at least some general tips for conversion, and even better, a "conversion table" for common commands and options? This answer would be a good example of a single entry in such a table.
|
Search the web for "sun application porting assistant 1.0 final release". I believe it is still downloadable from Oracle web site: It is a static source code analysis and code scanning tool that can be used to identify incompatible APIs between the Linux and Solaris platforms. Sun Application Porting Assistant's robust C/C++ and shell script parsers are able to examine these source files with reasonable accuracy and produce reports that can be used in porting the application. Together with an easy-to-use GUI and a simple command-line interface, Sun APA is intended to simplify and speed up estimation and porting times. |
|||
|
|
Check out Resources for portable shell programming. For Solaris specifically, the biggest gotcha is to make sure you have If your scripts are using bash constructs, you'll have to adapt them to run under ksh instead. Bash and ksh have a large common subset that contains many useful features that aren't in POSIX (arrays, extended glob patterns, |
|||
|
|
The Rosetta Stone for Unix website has a table showing equivalents for common commands across many different *nix flavors, though more focused on users & admins than shell script writers. |
|||
|
|
|
Instead of guessing what will work and what won't then just a install a Solaris on your workstation and test it out. (you obviously need a hypervisor to do that - recommend VirtualBox as you can download pre-build images for Solaris for use with VirtualBox). Won't cost you a penny and takes around 30 mins to install. Most of that is download time. |
|||
|
|