Created
June 3, 2014 13:36
-
-
Save Gronghon/5dafd6dc79a72cdcf9a6 to your computer and use it in GitHub Desktop.
shell snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#nombre de fichiers dans le répertoire courant inluant les sous répertoires | |
find . -name \* | wc -l | |
#exécuter le script courant dans vim | |
:w | !/bin/bash % | |
#Modifier les droits sur des répertoires X | |
chmod -R a+rX * | |
#Installation de 7zip sur CentOS 6 | |
yum install p7zip | |
man 7za | |
#capture d'écran d'une virtualbox en ligne de commande | |
vboxmanage controlvm "<nom de la vbox>" screenshotpng test.png | |
#changer le propriétaire d'un lien symbolique | |
chown -h <utilisateur>:<groupe> <lien symbolique> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment