[KSH] Bootscript -> Afficher ok/failed

Bootscript -> Afficher ok/failed [KSH] - Codes et scripts - Linux et OS Alternatifs

Marsh Posté le 05-07-2004 à 17:35:16    

voila j'ai un truc du genre qui machine à droite de mon terminal OK ou FAILED si le lancement du service a fonctionné ou non
 

Code :
  1. #!/usr/bin/ksh
  2. # Width of the Screen
  3. COLUMNS=$(stty size)
  4. COLUMNS=${COLUMNS##* }
  5. # When using remote connections, such as a serial port, stty size returns 0
  6. if [ "$COLUMNS" = "0" ]; then COLUMNS=80; fi
  7. # Measurements for positioning result messages
  8. COL=$(($COLUMNS - 10))
  9. WCOL=$(($COLUMNS - 30))
  10. # Set Cursur Position Commands, used via echo -e
  11. SET_COL="\\033[${COL}G"
  12. SET_WCOL="\\033[${WCOL}G"
  13. CURS_UP="\\033[A"
  14. # Set color commands, used via echo -e
  15. NORMAL="\\033[0;39m"
  16. SUCCESS="\\033[1;32m"
  17. WARNING="\\033[1;33m"
  18. FAILURE="\\033[1;31m"
  19. echo_ok()
  20. {
  21.     echo -e "$CURS_UP$SET_COL"["$SUCCESS""   OK    ""$NORMAL"]
  22. }
  23. echo_ok


 
le problème, c'est que ca fonctionne sous putty, mais pas avec les autres client telnet que j'ai (telnet windows, Hummingbird Wyseterm)
 
je comprends pas vraiment pk.
 
Le telnet de windows me l'affiche à gauche, alors que Wyseterm me fait la même chose et la couleur verte est rouge


Message édité par burgergold le 05-07-2004 à 17:35:28
Reply

Marsh Posté le 05-07-2004 à 17:35:16   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed