Répertoires ----------- Les fichiers dans le répertoire tp2dosformat sont au format DOS. Les fichiers dans le répertoire tp2linuxformat sont au format Linux. Fichiers de données ------------------- [fichier_entree.txt] Obtenu par la commande Linux: find . -maxdepth 1 -ls > fichier_entree.txt À utiliser dans les étapes -1- & 2 comme suit: tp2a15.exe -perm +755 -mtime -3 -type f -size +200c < fichier_entree.txt [tst_3_pperm.txt] Obtenu par la commande Linux: find . -maxdepth 1 -perm +755 -ls > tst_3_pperm.txt À utiliser dans l'étape -3- comme suit: tp2a15.exe -perm +755 > fichier_sortie_3a.txt [tst_3_nperm.txt] Obtenu par la commande Linux: find . -maxdepth 1 -perm -755 -ls > tst_3_nperm.txt À utiliser dans l'étape -3- comme suit: tp2a15.exe -perm -755 > fichier_sortie_3b.txt [tst_4_ptime.txt] Obtenu par la commande Linux: find . -maxdepth 1 -mtime +3 -ls > tst_4_ptime.txt À utiliser dans l'étape -4- comme suit: tp2a15.exe -mtime +3 > fichier_sortie_4a.txt [tst_4_ntime.txt] Obtenu par la commande Linux: find . -maxdepth 1 -mtime -3 -ls > tst_4_ntime.txt À utiliser dans l'étape -4- comme suit: tp2a15.exe -mtime -3 > fichier_sortie_4b.txt [tst_5_typef.txt] Obtenu par la commande Linux: find . -maxdepth 1 -type f -ls > tst_5_typef.txt À utiliser dans l'étape -5- comme suit: tp2a15.exe -type f > fichier_sortie_5.txt [tst_6_psize.txt] Obtenu par la commande Linux: find . -maxdepth 1 -size +5000c -ls > tst_6_psize.txt À utiliser dans l'étape -6- comme suit: tp2a15.exe -size +5000c > fichier_sortie_6a.txt [tst_6_nsize.txt] Obtenu par la commande Linux: find . -maxdepth 1 -size -5000c -ls > tst_6_nsize.txt À utiliser dans l'étape -6- comme suit: tp2a15.exe -size -5000c > fichier_sortie_6b.txt [tst_totale.txt] Obtenu par la commande Linux: find . -maxdepth 1 -perm -644 -type f -mtime -3 -size -5000c -ls > tst_totale.txt À utiliser dans l'étape -3- comme suit: tp2a15.exe -perm -644 -type f -mtime -3 -size -5000c > sortie_total_6.txt