4
Comment pouvez-vous convertir la commande suivante pour ZSH d'Ubuntu?Commande comme nom de fenêtre dans ZSH d'Ubuntu
commande de DavidPashley pour Bash
trap 'echo -e "\e]0;$BASH_COMMAND\007"' DEBUG
if [ "$SHELL" = '/bin/bash' ]
then
case $TERM in
rxvt|*term)
set -o functrace
trap 'echo -ne "\e]0;$BASH_COMMAND\007"' DEBUG
export PS1="\e]0;$TERM\007$PS1"
;;
esac
fi
Votre commande ne fonctionne pas dans mon zsh 4.3.9 (i686-pc-linux- gnou). Quoi d'autre avez-vous dans votre .zshrc? –
Votre terminal ne correspond-il pas à ce modèle? Que dit 'echo $ TERM'? – anthony
Il dit'exterm '. –