tp python
This commit is contained in:
parent
ba69fb4a2c
commit
62df029ff7
22
sio1/sisr1/70-python/analyse-cumul.py
Executable file
22
sio1/sisr1/70-python/analyse-cumul.py
Executable file
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
import re
|
||||
|
||||
volip={}
|
||||
|
||||
regexp = "^(\S+) (\S+) (\S+) \[([^]]+)\] \"(\w+) (\S+).*\" (\d+) (\S+)"
|
||||
for line in sys.stdin: # on lit sur l’entrée standard
|
||||
line = line.rstrip () # on enleve le retour ligne
|
||||
res = re.match (regexp, line)
|
||||
if res:
|
||||
(host, rfc931, user, date, request, url, status, byte) = res.groups()
|
||||
host = res.group (1)
|
||||
byte = int(res.group (8))
|
||||
#print ('host : ', host, ' byte : ', byte)
|
||||
if host not in volip:
|
||||
volip[host]=byte
|
||||
else:
|
||||
volip[host]=volip[host]+byte
|
||||
|
||||
for addr in sorted(volip.keys()):
|
||||
print(addr, "", volip[addr])
|
13
sio1/sisr1/70-python/analyse.py
Executable file
13
sio1/sisr1/70-python/analyse.py
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
import re
|
||||
regexp = "^(\S+) (\S+) (\S+) \[([^]]+)\] \"(\w+) (\S+).*\" (\d+) (\S+)"
|
||||
for line in sys.stdin: # on lit sur l’entrée standard
|
||||
line = line.rstrip () # on enleve le retour ligne
|
||||
res = re.match (regexp, line)
|
||||
if res:
|
||||
(host, rfc931, user, date, request, url, status, byte) = res.groups()
|
||||
host = res.group (1)
|
||||
byte = res.group (8)
|
||||
print ('host : ', host, ' byte : ', byte)
|
||||
|
34
sio1/sisr1/70-python/creatusr.py
Executable file
34
sio1/sisr1/70-python/creatusr.py
Executable file
@ -0,0 +1,34 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import sys
|
||||
|
||||
if len(sys.argv) != 2:
|
||||
print("usage: ", sys.argv[0], "<fichier>")
|
||||
sys.exit(1) # nombre de parametre invalide
|
||||
|
||||
filename = sys.argv[1]
|
||||
|
||||
try:
|
||||
file = open(filename , "r")
|
||||
|
||||
except:
|
||||
msg = "erreur ouverture fichier " + filename
|
||||
print(msg, file=sys.stderr)
|
||||
|
||||
else:
|
||||
line = file.readline()
|
||||
maligne = line.rstrip()
|
||||
|
||||
while maligne:
|
||||
(login, complet) = maligne.split(":")
|
||||
print (login)
|
||||
print (complet)
|
||||
commande="useradd --create-home --home-dir /home/"+login+ " --shell /bin/bash --comment \"" + complet + "\" " + login
|
||||
login = []
|
||||
line = file.readline()
|
||||
maligne = line.rstrip()
|
||||
print(line)
|
||||
file.close()
|
||||
|
||||
|
||||
|
1816
sio1/sisr1/70-python/result-cumul.txt
Normal file
1816
sio1/sisr1/70-python/result-cumul.txt
Normal file
File diff suppressed because it is too large
Load Diff
189641
sio1/sisr1/70-python/result.txt
Normal file
189641
sio1/sisr1/70-python/result.txt
Normal file
File diff suppressed because it is too large
Load Diff
4
sio1/sisr1/70-python/users.txt
Normal file
4
sio1/sisr1/70-python/users.txt
Normal file
@ -0,0 +1,4 @@
|
||||
emonnot:Elam Monnot
|
||||
pdubois:Paul Dubois
|
||||
blennon:Bob Lennon
|
||||
|
Loading…
x
Reference in New Issue
Block a user