vendredi 14 décembre 2007

Utiliser tput et terminfo

Comment créer des scripts unix avec une UI avancée ?
Essayez de vous souvenir de quelques unes de ces commandes et de les approfondir grâce aux pages de manuel :

# save cursor position
tput sc
# move cursor to 10th line and 20th column
tput cup 10 20
# write some text from here in standout mode
tput smso
echo "j ecris a partir de la 10eme ligne et la 20eme colonne"
# restore cursor position
tput rc
# exit from standout mode
tput rmso



Pour approfondir :
  • man tput
  • man terminfo
  • man termcap

Aucun commentaire: