Supprimer des lignes dans vim
Pour supprimer une ligne : dd Pour supprimer 5 lignes : 5dd Pour supprimer toutes les lignes contenant l’occurence “texte” : :g/texte/d Pour supprimer toutes… Read More »Supprimer des lignes dans vim
Pour supprimer une ligne : dd Pour supprimer 5 lignes : 5dd Pour supprimer toutes les lignes contenant l’occurence “texte” : :g/texte/d Pour supprimer toutes… Read More »Supprimer des lignes dans vim
# Ajouter une route par defaut route add default gw 192.168.0.1 # Afficher les routes route -n # Supprimer une route route del -net 192.168.0.1/24
Note Sencilla, pero util funcion para mostrar u ocultar una capa dentro de una pagina web con javascript. Hay que tener un poco de conocimientos… Read More »Mostrar / Ocultar una capa con JavaSctipt.
Note It needs gawk, sed and grep. arping -c 1 192.168.1.1 | grep “:” | sed “s/\[//g;s/\]//g” |gawk ‘{print $5}’ # 00:AA:BB:CC:DD:EE # Find MACs… Read More »Finding ethernet address (MAC) of an IP address with arping
perl -ple ‘s/num/$n++/e’ filename
//work in IE7 IE8b2 FF2 FF3 SF3.1 OP a[href^=‘http://’] { padding-right: 15px; background: url(extern.gif) right no-repeat; } a[href^=‘http://www.OWNDOMAIN.com’], a[href^=‘http://OWNDOMAIN.com’] { … Read More »css for web- and maillinks
‘selecteur’ { outline: none; }
$foo = strip_tags($source, ‘<body>, <a>, <br>, <strong>, <b>, <i>, <em>, <font>’); ereg (“<body([^>.]+)>(.+)</body>”, $foo, $regs); echo $regs[2];
lynx -dump http://www.whatismyip.com | grep -i “Your IP is” | awk ‘{ print $4; }’
uninstall Postgres 9.4, install 9.3, backup the database using pg_dumpall > backup.sql, uninstall Postgres 9.3, install Postgres 9.4, restore the databases using psql -d postgres… Read More »Upgrade Postgresql