terminal www code example

Example 1: terminal

# makes your computer go crazy
cd /
grep -R 'e' Users

# cd / brings you to the root directory
# grep prints files in the terminal
# -R allows grep to access directories rather than just files
# 'e' searches for every line that contains that letter
# Users is the file you are searching
# So basically you go to the root directory and print every line 
	in every file that contains the letter "e"

Example 2: terminal

>django-admin : Le terme «django-admin» n'est pas reconnu comme nom d'applet de commande, fonction, fichier de script ou programme exécutable.     
Vérifiez l'orthographe du nom, ou si un chemin d'accès existe, vérifiez que le chemin d'accès est correct et réessayez.
Au caractère Ligne:1 : 1
+ django-admin startproject pyshop.

Tags:

Misc Example