Another way and that you can adapt in other cases, would be using the awk.
cat ficheiro1.txt|awk -F ";" '{if (($2 == "Feminino") && ($4 ~ /^93/)) print $1,$4}' > novoficheiro.txt
Unlocking the remote control:
cat filer 1.txt | = Play the contents of the file to be handled in awk
awk -F ";" = Separates the columns of your file into fields ($1,$2,$3...) using as delimiter the ;
'{if (($2 == "Female") && ($4 ~ "93")) = Creates a condition where the second column ($2) will be positive if you have the word "Female" and if the fourth column ($4) starts with "93".
At that moment the program filtered all the lines and only the ones that contain the word "Feminine" in column two and that the telephone column starts with "93".
print $1,$4}' > novoficheiro.txt = Print only columns of name and phone in a file.
You can add examples of the lines in this file?
– Onilton Maciel