43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
|
|
||
|
#CLEAN images metadata
|
||
|
mat images/*
|
||
|
|
||
|
|
||
|
|
||
|
cloudconvert -f png <file.jpg> # Convertir tout type de fichiers
|
||
|
youtube-dl <url> # Télécharger des vidéos
|
||
|
mat <file> # Supprimer les metadata d'un fichier
|
||
|
fast # Speedtest
|
||
|
bleachbit # Ccleaner alternative
|
||
|
fdupes -r <dir> # Chercher les fichiers doublons
|
||
|
ncdu # Moyen rapide de voir quels répertoires utilisent votre espace disque
|
||
|
ag # grep 2.0
|
||
|
http <website> # Client console http
|
||
|
kpcli # Client console KeePass
|
||
|
tmux # Multiplexeur de terminal
|
||
|
cheat # https://github.com/chrisallenlane/cheat
|
||
|
tldr # Man simplifié
|
||
|
subliminal download -s -l fr <file> # Télécharger les sous-titres français d'un fichier vidéo
|
||
|
borg # Backups chiffrés
|
||
|
alexa <website> # Vérifer le classement d'un site internet
|
||
|
curl ipinfo.io # Connaitre son IP public et sa localisation
|
||
|
|
||
|
|
||
|
#trouver quel pip installé
|
||
|
which python pip pip2 | xargs -rd '\n' readlink -f
|
||
|
|
||
|
# extract data from an HTML or XML file
|
||
|
lynx -dump -listonly -nonumbers http://mywiki.wooledge.org/
|
||
|
http://mywiki.wooledge.org/EnglishFrontPage?action=rss_rc&unique=1&ddiffs=1
|
||
|
http://mywiki.wooledge.org/EnglishFrontPage?action=edit
|
||
|
http://mywiki.wooledge.org/EnglishFrontPage
|
||
|
|
||
|
|
||
|
### together
|
||
|
wget -q --spider -r --rejected-log=rejected --reject-regex=^ http://mywiki.wooledge.org/
|
||
|
cat rejected
|
||
|
###
|
||
|
|
||
|
|
||
|
wget -q --spider -r --rejected-log=/dev/stdout --reject-regex=^ http://mywiki.wooledge.org/ | tail -n +2 | cut -f 2
|