From 4405ebaf55ad9278d912590cfd69478fb14273fa Mon Sep 17 00:00:00 2001 From: "yann.lereuille" Date: Mon, 17 Feb 2025 11:49:11 +0100 Subject: [PATCH] =?UTF-8?q?Test=20de=20la=20premi=C3=A8re=20version=20du?= =?UTF-8?q?=20script=20createGroups.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sisr1/tp04_scripts_admin/tp04/Users.csv | 30 +++++++++++++++++++ sisr1/tp04_scripts_admin/tp04/createGroups.sh | 9 ++++++ 2 files changed, 39 insertions(+) create mode 100644 sisr1/tp04_scripts_admin/tp04/Users.csv create mode 100644 sisr1/tp04_scripts_admin/tp04/createGroups.sh diff --git a/sisr1/tp04_scripts_admin/tp04/Users.csv b/sisr1/tp04_scripts_admin/tp04/Users.csv new file mode 100644 index 0000000..9dfb324 --- /dev/null +++ b/sisr1/tp04_scripts_admin/tp04/Users.csv @@ -0,0 +1,30 @@ +Ermengarde,Berthelmot,eberthelmot0@webmd.com,Female,Accountant, +Kassi,Bunker,kbunker1@xinhuanet.com,Female,Production, +Moises,McCallum,mmccallum2@i2i.jp,Male,Production, +Patrizio,Lune,plune3@upenn.edu,Male,Accountant, +Blanch,Everix,beverix4@php.net,Female,Accountant, +Stafani,Kibbel,skibbel5@marriott.com,Female,Production, +Ignacius,Mosdell,imosdell6@cloudflare.com,Male,Management, +Jeana,Waller-Bridge,jwallerbridge7@mapy.cz,Female,Management, +Elroy,Dressel,edressel8@opera.com,Male,Production, +Thea,Strettell,tstrettell9@nature.com,Female,Production, +Solomon,Insoll,sinsolla@utexas.edu,Male,Accountant, +Carri,Feedome,cfeedomeb@ask.com,Female,Accountant, +Padraic,Chetwind,pchetwindc@last.fm,Male,Management, +Solly,D'Ugo,sdugod@uiuc.edu,Male,Production, +Konstanze,MacCostigan,kmaccostigane@seattletimes.com,Female,Accountant, +Roxane,Powlesland,rpowleslandf@pcworld.com,Female,Management, +Orelle,Kennealy,okennealyg@arstechnica.com,Female,Production, +Sukey,Soitoux,ssoitouxh@shinystat.com,Female,Production, +Nelli,Syce,nsycei@blogger.com,Female,Production, +Clarisse,Shillam,cshillamj@dailymotion.com,Female,Production, +Carin,Gueny,cguenyk@naver.com,Female,Management, +Donny,Riepel,driepell@addtoany.com,Male,Production, +Daniella,Ralfe,dralfem@wunderground.com,Female,Production, +Lexy,Clynmans,lclynmansn@furl.net,Female,Production, +Gardiner,Adamthwaite,gadamthwaiteo@spotify.com,Male,Production, +Woodman,Lippett,wlippettp@purevolume.com,Male,Production, +Nadya,Munnion,nmunnionq@flavors.me,Female,Production, +Llewellyn,Habershon,lhabershonr@alibaba.com,Male,Production, +Isaak,Greatrex,igreatrexs@seesaa.net,Male,Production, +Darill,Frostdyke,dfrostdyket@cafepress.com,Male,Production, diff --git a/sisr1/tp04_scripts_admin/tp04/createGroups.sh b/sisr1/tp04_scripts_admin/tp04/createGroups.sh new file mode 100644 index 0000000..1a02b73 --- /dev/null +++ b/sisr1/tp04_scripts_admin/tp04/createGroups.sh @@ -0,0 +1,9 @@ +#!/bin/bash +file='./Users.csv' + +while read ligne +do + metier=$(echo $ligne | cut -d ":" -f5 ) + echo $metier +done < $file + \ No newline at end of file