1 lien privé
Bon, faut que je vous avoue un truc inavouable. Même si j’adore Notepad++, je ne l’utilise plus depuis que je suis passé sous Mac. Et ça me manque ...
In this guide, we’ll walk you through various methods to compare text files in Linux, from basic command-line tools to advanced visual diff tools.
For system administrators who generally don’t have X-windows as a safety measure on their servers, the text-based web browser comes to the rescue.
How can I find and replace specific words in a text file using command line?
sed -i 's/original/new/g' file.txt
Explanation:
sed = Stream EDitor
-i = in-place (i.e. save back to the original file)
The command string:
s = the substitute command
original = a regular expression describing the word to replace (or just the word itself)
new = the text to replace it with
g = global (i.e. replace all and not just the first occurrence)
file.txt = the file nameIn the Linux operating system, text editors are of two kinds that is the graphical user interface (GUI) and command-line text editors (console or terminal).
11 Best Open Source Note-Taking Apps for Linux
https://www.tecmint.com/note-taking-apps-linux/
Today I'm going to show you how to turn your boring lines of text into exciting ASCII text art. We are going to use two programs, FIGlet and TOIlet.
FIGlet is a program for making large letters out of ordinary text
http://www.figlet.org/
Keyboard shortcuts can have a massive impact on your Mac workflow. They allow you to accomplish simple tasks, like selecting, copying, or formatting text, without ever lifting your hands from the keyboard.
Resoomer, comme son nom l’indique est capable de rédiger des résumés de texte voire également de réécrire / paraphraser un contenu écrit.
Do you use a Notepad alternative, like Notepad++ or Notepad2? Notepad Replacer will allow you to replace the default Windows version of Notepad with whatever alternative you would like to use.
Apprendre la sténographie avec cet outil gratuit.
Vi amélioré : Vim
Vi existe en plusieurs versions ou incarnations, les plus répandues étant l'ancêtre vi, la version améliorée vim (ou Vi improved) et GVim, une version graphique qui s'installe sur les postes de travail.