J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.
5138 links
Trop bien cet article. J'ai appris de nouveaux raccourcis (je n'ai jamais pris le temps de regarder dans les paramètres)...
Crtl+A : revenir en début de ligne
Ctrl+E : aller en fin de ligne
Alt+B : revenir en arrière d'un mot
Alt+F : avancer d'un mot
Ctrl+U : effacer le début de ligne à partir de la position du curseur
Ctrl + K : effacer la fin de ligne depuis la position du curseur
history : pour afficher l'historique des commandes précédemment écrites
Et pour rejouer une commande, il suffit de taper !
+ le numéro de commande
:
!587
Ce qui rejouera la ligne 587 de l'historique
console.table()
console.group()
console.count()
console.assert()
console.dir()
console.trace()
console.clear()
Attention, la batterie n'est pas livrée avec. Il faut se la procurer ailleurs.
Quand on édite un fichier avec nano en ssh, il est possible de coller le contenu du presse-papier du poste client en faisant un clic droit à l'endroit où l'on souhaite voir ce contenu s'afficher.
C'est tout con, mais ça change la vie !
Many Linux servers are administered on the commandline e.g. with an SSH connection. In the following article, I will explain several shell commands that make it easy to view logfiles.
The most important command is tail
. Tail can be used to read the last lines from a file. Examples:
Get the last 100 lines from the Debian mail log file:
tail -n 100 /var/log/mail.log
To get all newly added lines from a log file in realtime on the shell, use the command:
tail -f /var/log/mail.log
to quit tail and go back to the command line press the keys [ctrl] + [c]
If you want to get the last 1000 lines from a log file and they do not fit into your shell window, you can use the command "more" to be able to view them line by line.
tail -n 1000 /var/log/mail.log | more
press [space] to go to the next line or [ctrl] + [c] to quit.
If you want to search for a specific term in a large file, the command "grep" comes in handy. Example: We search for the email address "tom@anydomain.tld" in the mail log file:
grep "tom@anydomain.tld" /var/log/mail.log
If you want to view the whole content of a file on the shell, use the command "cat". Example:
cat /proc/cpuinfo
will show you detailed info about the CPU of your computer.
Si un jour j'ai 5 min...
Comment mettre un alias vers la console Cake.
Voir pour faire de même avec celle de Yii