5421 shaares
  
  
5 private links
5 private links
        2 results
        
        
          
          tagged
          
              
                
                  rlwrap
                
              
          
        
        
        
      
    Votre shell n'a pas la completion ni le rappel des commandes de l'historique ?
Pas grave, avec rlwrap vous pouvez les ajouter sans rien modifier au programme.
Exemple avec tclsh:
$ rlwrap tclsh
% puts "c'est fastidieux sans rappel de l'historique"
c'est fastidieux sans rappel de l'historique
%[flèche haut]
% puts "c'est fastidieux sans rappel de l'historique"If you have the following warning launching tclsh in debian/ubuntu:
rlwrap: warning: your $TERM is 'xterm' but rlwrap couldn't find it in the terminfo database. Expect some problems.
Do the following :
sudo cp /lib/terminfo/x/xterm /usr/share/terminfo/x
Works for me ;)