Notes: Added printf, sprintf, fprintf.
Changes: * Added printf, sprintf and fprintf For portability reasons, it is best to stay away from the following characters in the format string: $ & @ ` " \ (escape codes like \n, \r, \i, \f etc are ok, though). If you need any of the above characters, put them in the argument list as chars or strings. Do this: printf 'I have %s%d\n' '$' 3 Instead of this: printf 'I have $%d\n' 3 The latter will not work. See eptopgl(1) for more details
Copyright © 2009 Geeknet, Inc. All rights reserved. Terms of Use