-
-
Save aminelch/6f14fbf6cf0510d2b8678bbd4b425d11 to your computer and use it in GitHub Desktop.
qlq commandes utiles
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
#simple unzip | |
unzip latest.zip | |
#To unzip a ZIP file in a different directory than the current one, use the -d switch. | |
unzip filename.zip -d /path/to/directory | |
#To enable and disable services to auto-start at reboot, use the following commands | |
#Enable service | |
chkconfig httpd on | |
#Disable service | |
chkconfig httpd off | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment