Subversion Repositories Kolibri OS

Rev

Rev 1668 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. int cmd_about(char param[])
  3. {
  4.  
  5. char message[] = {
  6. "\
  7. \n\r\
  8. Shell for KolibriOS\n\r\
  9. version %s\n\r\n\r\
  10.  author: Oleksandr Bogomaz aka Albom\n\r\
  11.  e-mail: albom85@yandex.ru\n\r\
  12.    site: http://albom85.narod.ru/\n\r\n\r\
  13. "};
  14.  
  15. printf(message, SHELL_VERSION);
  16. return TRUE;
  17. }
  18.