Diff
checker
Texte
Texte
Images
Documents
Excel
Dossiers
Legal
Enterprise
Application de bureau
Prix
Se connecter
Télécharger Diffchecker Desktop
Comparer le texte
Trouver la différence entre deux fichiers texte
Outils
Historique
Éditeur live
Cacher identiques
Sans retour à la ligne
Vue
Divisé
Unifié
Niveau de précision
Intelligent
Mot
Caractère
Coloration syntaxique
Choisir la syntaxe
Ignorer
Transformer le texte
Aller au premier écart
Modifier l'entrée
Diffchecker Desktop
La façon la plus sécurisée d'utiliser Diffchecker. Obtenez l'application Diffchecker Desktop : vos diffs ne quittent jamais votre ordinateur !
Obtenir Desktop
Untitled diff
Créé
il y a 10 ans
Le diff n'expire jamais
Effacer
Exporter
Partager
Expliquer
2 suppressions
Lignes
Total
Supprimé
Caractères
Total
Supprimé
Pour continuer à utiliser cette fonctionnalité, passez à
Diff
checker
Pro
Voir les prix
14 lignes
Copier tout
9 ajouts
Lignes
Total
Ajouté
Caractères
Total
Ajouté
Pour continuer à utiliser cette fonctionnalité, passez à
Diff
checker
Pro
Voir les prix
14 lignes
Copier tout
multissh() {
multissh() {
local hosts=( $* )
local hosts=( $* )
Copier
Copié
Copier
Copié
tmux new-window
"ssh ${hosts[0]}"
local win=$(
tmux new-window
-dP
"ssh ${hosts[0]}"
)
unset hosts[0]
unset hosts[0]
for i in "${hosts[@]}"; do
for i in "${hosts[@]}"; do
Copier
Copié
Copier
Copié
tmux split-window -h
"ssh $i"
tmux split-window -h
t$win
"ssh $i"
tmux select-layout
tiled > /dev/null
tmux select-layout
-t$win
tiled > /dev/null
done
done
Copier
Copié
Copier
Copié
tmux select-pane -t
0
tmux select-pane -t
$win
tmux set-window-option
synchronize-panes on > /dev/null
tmux set-window-option
-t $win
synchronize-panes on > /dev/null
}
}
Copier
Copié
Copier
Copié
## This
works in tmux
2.0
## This
_only_
works in tmux
>=2.1
Différences enregistrées
Texte d'origine
Ouvrir un fichier
multissh() { local hosts=( $* ) tmux new-window "ssh ${hosts[0]}" unset hosts[0] for i in "${hosts[@]}"; do tmux split-window -h "ssh $i" tmux select-layout tiled > /dev/null done tmux select-pane -t 0 tmux set-window-option synchronize-panes on > /dev/null } ## This works in tmux 2.0
Texte modifié
Ouvrir un fichier
multissh() { local hosts=( $* ) local win=$( tmux new-window -dP "ssh ${hosts[0]}" ) unset hosts[0] for i in "${hosts[@]}"; do tmux split-window -ht$win "ssh $i" tmux select-layout -t$win tiled > /dev/null done tmux select-pane -t $win tmux set-window-option -t $win synchronize-panes on > /dev/null } ## This _only_ works in tmux >=2.1
Trouver la différence