Totin Nurkka

 Intro

Etusivu
Toti
Yhteyslomake


 Mietteet

Utopia

 Kujeet

Anonymiteetti
Asiattomuudet
Sotkusilppu
Teksti


 Epätaide

Epätaiteen alkeet
Kuvanlaadun parannus


 Psykometria

MSI-BPD

 Skriptit

merkkisiivous.sh
m358.sh
IRC-gateway


 International

Web proxies

 m358.sh

Shell-skriptini nimeltään m358.sh etsii tekstistä rivejä joilla on suomalaisen miehen nimi, poistaa rivit joilta näitä nimiä ei löydy ja merkitsee erikoismerkein nimet. Suunniteltu käytettäväksi tiedostoihin, jotka on käsitelty ensin merkkisiivous.sh:lla. Siinäpä:


#!/usr/bin/env bash
# 
# Skripti etsii tiedostosta suomalaisia miehen nimiä joilla on
# nimipäivä, kuten "kari", "henri" tai "aki" ja merkitsee ne
# laittamalla merkin ¼ niiden eteen ja ¾ taakse. Sen jälkeen skripti
# poistaa naisen nimet, jotka sisältävät miehen nimen kuten "karita"
# tai "henriikka", mutta skripti ei poista ulkomaalaisia miehen nimiä
# kuten "akira".
# 
# Skripti luo ensin varmuuskopion alkuperäisestä tiedostosta nimellä
# tiedosto_m358_bak.txt
# 
# Käyttöohje:
# 1. Tee tyhjä hakemisto
# 2. Laita haluamasi tiedosto nimellä tiedosto.txt siihen
# 3. Laita myös tämä skripti sinne nimellä m358.sh
# 4. Kirjoita chmod +x m358.sh
# 5. Kirjoita ./m358.sh
# 
# Tageja voi käyttää niin, että muuttaa ne esimerkiksi html-koodiksi
# antaen nimille tietyn värin, jolloin ne on helppo löytää tekstistä.
# Skripti on suunniteltu siten, että sen voi helposti muokata
# versioksi, joka ei tuhoa nimiä, vaan pelkästään merkitsee tageilla
# (se merkitsee erikseen naisten nimet "dx3x1x3x7x3"-tagilla nimen
# perässä ennen poistoa". Jos haluat säilyttää välivaiheiden
# tekstitiedostot, poista skriptistä kaksi viimeistä riviä eli rm
# m358_backup_1.txt ja rm m358_backup_2.txt.
# 
# Skripti on tarkoitettu käytettäväksi tiedostoon, joka on esikäsitelty
# isoista kirjaimista ja erikoismerkeistä vapaaksi
# merkkisiivous.sh:lla. Nimien tulisi olla lähdetiedostossa
# järjestettynä riveittäin, sukunimi ensin, ja niin, että rivien
# lopussa on välilyönti.
# 
# Tähän tapaan:
# 
# "hamalainen yrjo "
# "virtanen sanna "
# "lahtinen matti "
#
# Skripti ei (luonnollisestikaan) löydä kaikkia nimiä.
# 
# Jos haluat täydellistä jälkeä, älä käytä automaattipoistoa (poista
# skriptin kaksi viimeistä riviä ja käytä backup-tiedostoja hyödyntäen
# pelkkiä tageja) ja siirrä sitä ennen sukunimet erikseen omaan
# listaansa esimerkiksi LibreOffice Calcin ja CSV-tiedoston avulla,
# josta yhdistät ne myöhemmin LibreOffice Calcilla taas yhteen ja
# samaan tiedostoon.
# 
# Tämän on kyhännyt Toti joulukuussa 2025 ja tämä on ensimmäinen
# julkaistu versio.
#
cp tiedosto.txt tiedosto_m358_bak.txt

sed -i -e 's/aadolf/¼aadolf¾/g' tiedosto.txt
sed -i -e 's/aamos/¼aamos¾/g' tiedosto.txt
sed -i -e 's/aapeli/¼aapeli¾/g' tiedosto.txt
sed -i -e 's/aapo/¼aapo¾/g' tiedosto.txt
sed -i -e 's/aappo/¼aappo¾/g' tiedosto.txt
sed -i -e 's/aarne/¼aarne¾/g' tiedosto.txt
sed -i -e 's/aarni/¼aarni¾/g' tiedosto.txt
sed -i -e 's/aarno/¼aarno¾/g' tiedosto.txt
sed -i -e 's/aaro/¼aaro¾/g' tiedosto.txt
sed -i -e 's/aaron/¼aaron¾/g' tiedosto.txt
sed -i -e 's/aarre/¼aarre¾/g' tiedosto.txt
sed -i -e 's/aarto/¼aarto¾/g' tiedosto.txt
sed -i -e 's/aatami/¼aatami¾/g' tiedosto.txt
sed -i -e 's/aatos/¼aatos¾/g' tiedosto.txt
sed -i -e 's/aatto/¼aatto¾/g' tiedosto.txt
sed -i -e 's/aatu/¼aatu¾/g' tiedosto.txt
sed -i -e 's/ahti/¼ahti¾/g' tiedosto.txt
sed -i -e 's/ahto/¼ahto¾/g' tiedosto.txt
sed -i -e 's/ahvo/¼ahvo¾/g' tiedosto.txt
sed -i -e 's/aimo/¼aimo¾/g' tiedosto.txt
sed -i -e 's/aki/¼aki¾/g' tiedosto.txt
sed -i -e 's/akseli/¼akseli¾/g' tiedosto.txt
sed -i -e 's/aku/¼aku¾/g' tiedosto.txt
sed -i -e 's/albert/¼albert¾/g' tiedosto.txt
sed -i -e 's/ale/¼ale¾/g' tiedosto.txt
sed -i -e 's/aleksanteri/¼aleksanteri¾/g' tiedosto.txt
sed -i -e 's/aleksi/¼aleksi¾/g' tiedosto.txt
sed -i -e 's/aleksis/¼aleksis¾/g' tiedosto.txt
sed -i -e 's/alfred/¼alfred¾/g' tiedosto.txt
sed -i -e 's/ali/¼ali¾/g' tiedosto.txt
sed -i -e 's/allan/¼allan¾/g' tiedosto.txt
sed -i -e 's/alpi/¼alpi¾/g' tiedosto.txt
sed -i -e 's/alpo/¼alpo¾/g' tiedosto.txt
sed -i -e 's/altti/¼altti¾/g' tiedosto.txt
sed -i -e 's/alvar/¼alvar¾/g' tiedosto.txt
sed -i -e 's/alvi/¼alvi¾/g' tiedosto.txt
sed -i -e 's/andreas/¼andreas¾/g' tiedosto.txt
sed -i -e 's/ano/¼ano¾/g' tiedosto.txt
sed -i -e 's/anselmi/¼anselmi¾/g' tiedosto.txt
sed -i -e 's/anssi/¼anssi¾/g' tiedosto.txt
sed -i -e 's/antero/¼antero¾/g' tiedosto.txt
sed -i -e 's/anton/¼anton¾/g' tiedosto.txt
sed -i -e 's/antti/¼antti¾/g' tiedosto.txt
sed -i -e 's/antto/¼antto¾/g' tiedosto.txt
sed -i -e 's/anttoni/¼anttoni¾/g' tiedosto.txt
sed -i -e 's/arhippa/¼arhippa¾/g' tiedosto.txt
sed -i -e 's/arho/¼arho¾/g' tiedosto.txt
sed -i -e 's/ari/¼ari¾/g' tiedosto.txt
sed -i -e 's/armas/¼armas¾/g' tiedosto.txt
sed -i -e 's/arsi/¼arsi¾/g' tiedosto.txt
sed -i -e 's/arto/¼arto¾/g' tiedosto.txt
sed -i -e 's/arttu/¼arttu¾/g' tiedosto.txt
sed -i -e 's/artturi/¼artturi¾/g' tiedosto.txt
sed -i -e 's/arvi/¼arvi¾/g' tiedosto.txt
sed -i -e 's/arvo/¼arvo¾/g' tiedosto.txt
sed -i -e 's/asko/¼asko¾/g' tiedosto.txt
sed -i -e 's/aslak/¼aslak¾/g' tiedosto.txt
sed -i -e 's/asmo/¼asmo¾/g' tiedosto.txt
sed -i -e 's/asser/¼asser¾/g' tiedosto.txt
sed -i -e 's/atro/¼atro¾/g' tiedosto.txt
sed -i -e 's/atso/¼atso¾/g' tiedosto.txt
sed -i -e 's/atte/¼atte¾/g' tiedosto.txt
sed -i -e 's/august/¼august¾/g' tiedosto.txt
sed -i -e 's/aukusti/¼aukusti¾/g' tiedosto.txt
sed -i -e 's/aulis/¼aulis¾/g' tiedosto.txt
sed -i -e 's/auno/¼auno¾/g' tiedosto.txt
sed -i -e 's/auvo/¼auvo¾/g' tiedosto.txt
sed -i -e 's/benjamin/¼benjamin¾/g' tiedosto.txt
sed -i -e 's/daavid/¼daavid¾/g' tiedosto.txt
sed -i -e 's/daniel/¼daniel¾/g' tiedosto.txt
sed -i -e 's/edvard/¼edvard¾/g' tiedosto.txt
sed -i -e 's/edvin/¼edvin¾/g' tiedosto.txt
sed -i -e 's/eeli/¼eeli¾/g' tiedosto.txt
sed -i -e 's/eelis/¼eelis¾/g' tiedosto.txt
sed -i -e 's/eemeli/¼eemeli¾/g' tiedosto.txt
sed -i -e 's/eemi/¼eemi¾/g' tiedosto.txt
sed -i -e 's/eemil/¼eemil¾/g' tiedosto.txt
sed -i -e 's/eerik/¼eerik¾/g' tiedosto.txt
sed -i -e 's/eerikki/¼eerikki¾/g' tiedosto.txt
sed -i -e 's/eero/¼eero¾/g' tiedosto.txt
sed -i -e 's/eetu/¼eetu¾/g' tiedosto.txt
sed -i -e 's/eevert/¼eevert¾/g' tiedosto.txt
sed -i -e 's/einari/¼einari¾/g' tiedosto.txt
sed -i -e 's/eino/¼eino¾/g' tiedosto.txt
sed -i -e 's/elia/¼elia¾/g' tiedosto.txt
sed -i -e 's/elias/¼elias¾/g' tiedosto.txt
sed -i -e 's/eliel/¼eliel¾/g' tiedosto.txt
sed -i -e 's/eljas/¼eljas¾/g' tiedosto.txt
sed -i -e 's/elmer/¼elmer¾/g' tiedosto.txt
sed -i -e 's/elmeri/¼elmeri¾/g' tiedosto.txt
sed -i -e 's/elmo/¼elmo¾/g' tiedosto.txt
sed -i -e 's/ensio/¼ensio¾/g' tiedosto.txt
sed -i -e 's/eppu/¼eppu¾/g' tiedosto.txt
sed -i -e 's/erkka/¼erkka¾/g' tiedosto.txt
sed -i -e 's/erkki/¼erkki¾/g' tiedosto.txt
sed -i -e 's/ernesti/¼ernesti¾/g' tiedosto.txt
sed -i -e 's/erno/¼erno¾/g' tiedosto.txt
sed -i -e 's/esa/¼esa¾/g' tiedosto.txt
sed -i -e 's/esaias/¼esaias¾/g' tiedosto.txt
sed -i -e 's/esko/¼esko¾/g' tiedosto.txt
sed -i -e 's/felix/¼felix¾/g' tiedosto.txt
sed -i -e 's/frans/¼frans¾/g' tiedosto.txt
sed -i -e 's/gabriel/¼gabriel¾/g' tiedosto.txt
sed -i -e 's/hannes/¼hannes¾/g' tiedosto.txt
sed -i -e 's/hannu/¼hannu¾/g' tiedosto.txt
sed -i -e 's/hans/¼hans¾/g' tiedosto.txt
sed -i -e 's/harri/¼harri¾/g' tiedosto.txt
sed -i -e 's/heikki/¼heikki¾/g' tiedosto.txt
sed -i -e 's/heimo/¼heimo¾/g' tiedosto.txt
sed -i -e 's/heino/¼heino¾/g' tiedosto.txt
sed -i -e 's/hemminki/¼hemminki¾/g' tiedosto.txt
sed -i -e 's/hemmo/¼hemmo¾/g' tiedosto.txt
sed -i -e 's/henri/¼henri¾/g' tiedosto.txt
sed -i -e 's/henrik/¼henrik¾/g' tiedosto.txt
sed -i -e 's/henrikki/¼henrikki¾/g' tiedosto.txt
sed -i -e 's/herkko/¼herkko¾/g' tiedosto.txt
sed -i -e 's/herman/¼herman¾/g' tiedosto.txt
sed -i -e 's/hermanni/¼hermanni¾/g' tiedosto.txt
sed -i -e 's/hugo/¼hugo¾/g' tiedosto.txt
sed -i -e 's/iikka/¼iikka¾/g' tiedosto.txt
sed -i -e 's/iiro/¼iiro¾/g' tiedosto.txt
sed -i -e 's/iisakki/¼iisakki¾/g' tiedosto.txt
sed -i -e 's/iivari/¼iivari¾/g' tiedosto.txt
sed -i -e 's/iivo/¼iivo¾/g' tiedosto.txt
sed -i -e 's/ilari/¼ilari¾/g' tiedosto.txt
sed -i -e 's/ilja/¼ilja¾/g' tiedosto.txt
sed -i -e 's/ilkka/¼ilkka¾/g' tiedosto.txt
sed -i -e 's/ilmari/¼ilmari¾/g' tiedosto.txt
sed -i -e 's/ilmo/¼ilmo¾/g' tiedosto.txt
sed -i -e 's/ilpo/¼ilpo¾/g' tiedosto.txt
sed -i -e 's/ilppo/¼ilppo¾/g' tiedosto.txt
sed -i -e 's/immanuel/¼immanuel¾/g' tiedosto.txt
sed -i -e 's/immo/¼immo¾/g' tiedosto.txt
sed -i -e 's/into/¼into¾/g' tiedosto.txt
sed -i -e 's/isko/¼isko¾/g' tiedosto.txt
sed -i -e 's/ismo/¼ismo¾/g' tiedosto.txt
sed -i -e 's/isto/¼isto¾/g' tiedosto.txt
sed -i -e 's/jaakkima/¼jaakkima¾/g' tiedosto.txt
sed -i -e 's/jaakko/¼jaakko¾/g' tiedosto.txt
sed -i -e 's/jaakob/¼jaakob¾/g' tiedosto.txt
sed -i -e 's/jaakoppi/¼jaakoppi¾/g' tiedosto.txt
sed -i -e 's/jalmari/¼jalmari¾/g' tiedosto.txt
sed -i -e 's/jalo/¼jalo¾/g' tiedosto.txt
sed -i -e 's/jami/¼jami¾/g' tiedosto.txt
sed -i -e 's/jani/¼jani¾/g' tiedosto.txt
sed -i -e 's/janne/¼janne¾/g' tiedosto.txt
sed -i -e 's/jare/¼jare¾/g' tiedosto.txt
sed -i -e 's/jari/¼jari¾/g' tiedosto.txt
sed -i -e 's/jarkko/¼jarkko¾/g' tiedosto.txt
sed -i -e 's/jarmo/¼jarmo¾/g' tiedosto.txt
sed -i -e 's/jarno/¼jarno¾/g' tiedosto.txt
sed -i -e 's/jasper/¼jasper¾/g' tiedosto.txt
sed -i -e 's/jasu/¼jasu¾/g' tiedosto.txt
sed -i -e 's/jere/¼jere¾/g' tiedosto.txt
sed -i -e 's/jeremias/¼jeremias¾/g' tiedosto.txt
sed -i -e 's/jesper/¼jesper¾/g' tiedosto.txt
sed -i -e 's/jesse/¼jesse¾/g' tiedosto.txt
sed -i -e 's/jimi/¼jimi¾/g' tiedosto.txt
sed -i -e 's/jiri/¼jiri¾/g' tiedosto.txt
sed -i -e 's/joakim/¼joakim¾/g' tiedosto.txt
sed -i -e 's/joel/¼joel¾/g' tiedosto.txt
sed -i -e 's/johannes/¼johannes¾/g' tiedosto.txt
sed -i -e 's/joni/¼joni¾/g' tiedosto.txt
sed -i -e 's/jonne/¼jonne¾/g' tiedosto.txt
sed -i -e 's/jonni/¼jonni¾/g' tiedosto.txt
sed -i -e 's/jooa/¼jooa¾/g' tiedosto.txt
sed -i -e 's/joona/¼joona¾/g' tiedosto.txt
sed -i -e 's/joonas/¼joonas¾/g' tiedosto.txt
sed -i -e 's/joonatan/¼joonatan¾/g' tiedosto.txt
sed -i -e 's/joose/¼joose¾/g' tiedosto.txt
sed -i -e 's/joosef/¼joosef¾/g' tiedosto.txt
sed -i -e 's/jooseppi/¼jooseppi¾/g' tiedosto.txt
sed -i -e 's/jori/¼jori¾/g' tiedosto.txt
sed -i -e 's/jorma/¼jorma¾/g' tiedosto.txt
sed -i -e 's/jose/¼jose¾/g' tiedosto.txt
sed -i -e 's/jouko/¼jouko¾/g' tiedosto.txt
sed -i -e 's/jouni/¼jouni¾/g' tiedosto.txt
sed -i -e 's/jousia/¼jousia¾/g' tiedosto.txt
sed -i -e 's/juha/¼juha¾/g' tiedosto.txt
sed -i -e 's/juhana/¼juhana¾/g' tiedosto.txt
sed -i -e 's/juhani/¼juhani¾/g' tiedosto.txt
sed -i -e 's/juho/¼juho¾/g' tiedosto.txt
sed -i -e 's/jukka/¼jukka¾/g' tiedosto.txt
sed -i -e 's/julius/¼julius¾/g' tiedosto.txt
sed -i -e 's/jussi/¼jussi¾/g' tiedosto.txt
sed -i -e 's/justus/¼justus¾/g' tiedosto.txt
sed -i -e 's/juuso/¼juuso¾/g' tiedosto.txt
sed -i -e 's/jyri/¼jyri¾/g' tiedosto.txt
sed -i -e 's/jyrki/¼jyrki¾/g' tiedosto.txt
sed -i -e 's/kaapo/¼kaapo¾/g' tiedosto.txt
sed -i -e 's/kaappo/¼kaappo¾/g' tiedosto.txt
sed -i -e 's/kaapro/¼kaapro¾/g' tiedosto.txt
sed -i -e 's/kaarle/¼kaarle¾/g' tiedosto.txt
sed -i -e 's/kaarlo/¼kaarlo¾/g' tiedosto.txt
sed -i -e 's/kai/¼kai¾/g' tiedosto.txt
sed -i -e 's/kaius/¼kaius¾/g' tiedosto.txt
sed -i -e 's/kalervo/¼kalervo¾/g' tiedosto.txt
sed -i -e 's/kaleva/¼kaleva¾/g' tiedosto.txt
sed -i -e 's/kalevi/¼kalevi¾/g' tiedosto.txt
sed -i -e 's/kalle/¼kalle¾/g' tiedosto.txt
sed -i -e 's/kari/¼kari¾/g' tiedosto.txt
sed -i -e 's/karri/¼karri¾/g' tiedosto.txt
sed -i -e 's/kasper/¼kasper¾/g' tiedosto.txt
sed -i -e 's/kasperi/¼kasperi¾/g' tiedosto.txt
sed -i -e 's/kauko/¼kauko¾/g' tiedosto.txt
sed -i -e 's/kauno/¼kauno¾/g' tiedosto.txt
sed -i -e 's/keijo/¼keijo¾/g' tiedosto.txt
sed -i -e 's/keimo/¼keimo¾/g' tiedosto.txt
sed -i -e 's/kerkko/¼kerkko¾/g' tiedosto.txt
sed -i -e 's/kevin/¼kevin¾/g' tiedosto.txt
sed -i -e 's/kim/¼kim¾/g' tiedosto.txt
sed -i -e 's/kimi/¼kimi¾/g' tiedosto.txt
sed -i -e 's/kimmo/¼kimmo¾/g' tiedosto.txt
sed -i -e 's/klaus/¼klaus¾/g' tiedosto.txt
sed -i -e 's/konsta/¼konsta¾/g' tiedosto.txt
sed -i -e 's/konstantin/¼konstantin¾/g' tiedosto.txt
sed -i -e 's/kosti/¼kosti¾/g' tiedosto.txt
sed -i -e 's/kristian/¼kristian¾/g' tiedosto.txt
sed -i -e 's/kuisma/¼kuisma¾/g' tiedosto.txt
sed -i -e 's/kullervo/¼kullervo¾/g' tiedosto.txt
sed -i -e 's/kustaa/¼kustaa¾/g' tiedosto.txt
sed -i -e 's/kustavi/¼kustavi¾/g' tiedosto.txt
sed -i -e 's/kusti/¼kusti¾/g' tiedosto.txt
sed -i -e 's/kyosti/¼kyosti¾/g' tiedosto.txt
sed -i -e 's/lari/¼lari¾/g' tiedosto.txt
sed -i -e 's/lasse/¼lasse¾/g' tiedosto.txt
sed -i -e 's/lassi/¼lassi¾/g' tiedosto.txt
sed -i -e 's/launo/¼launo¾/g' tiedosto.txt
sed -i -e 's/lauri/¼lauri¾/g' tiedosto.txt
sed -i -e 's/leevi/¼leevi¾/g' tiedosto.txt
sed -i -e 's/lenni/¼lenni¾/g' tiedosto.txt
sed -i -e 's/leo/¼leo¾/g' tiedosto.txt
sed -i -e 's/leon/¼leon¾/g' tiedosto.txt
sed -i -e 's/luka/¼luka¾/g' tiedosto.txt
sed -i -e 's/luukas/¼luukas¾/g' tiedosto.txt
sed -i -e 's/lyly/¼lyly¾/g' tiedosto.txt
sed -i -e 's/mainio/¼mainio¾/g' tiedosto.txt
sed -i -e 's/manne/¼manne¾/g' tiedosto.txt
sed -i -e 's/manu/¼manu¾/g' tiedosto.txt
sed -i -e 's/markku/¼markku¾/g' tiedosto.txt
sed -i -e 's/marko/¼marko¾/g' tiedosto.txt
sed -i -e 's/markus/¼markus¾/g' tiedosto.txt
sed -i -e 's/martin/¼martin¾/g' tiedosto.txt
sed -i -e 's/martti/¼martti¾/g' tiedosto.txt
sed -i -e 's/matias/¼matias¾/g' tiedosto.txt
sed -i -e 's/matti/¼matti¾/g' tiedosto.txt
sed -i -e 's/mauno/¼mauno¾/g' tiedosto.txt
sed -i -e 's/maunu/¼maunu¾/g' tiedosto.txt
sed -i -e 's/max/¼max¾/g' tiedosto.txt
sed -i -e 's/mauri/¼mauri¾/g' tiedosto.txt
sed -i -e 's/mies/¼mies¾/g' tiedosto.txt
sed -i -e 's/miika/¼miika¾/g' tiedosto.txt
sed -i -e 's/miikka/¼miikka¾/g' tiedosto.txt
sed -i -e 's/mika/¼mika¾/g' tiedosto.txt
sed -i -e 's/mikael/¼mikael¾/g' tiedosto.txt
sed -i -e 's/miki/¼miki¾/g' tiedosto.txt
sed -i -e 's/mikko/¼mikko¾/g' tiedosto.txt
sed -i -e 's/miko/¼miko¾/g' tiedosto.txt
sed -i -e 's/milo/¼milo¾/g' tiedosto.txt
sed -i -e 's/mio/¼mio¾/g' tiedosto.txt
sed -i -e 's/miro/¼miro¾/g' tiedosto.txt
sed -i -e 's/miska/¼miska¾/g' tiedosto.txt
sed -i -e 's/neo/¼neo¾/g' tiedosto.txt
sed -i -e 's/nestori/¼nestori¾/g' tiedosto.txt
sed -i -e 's/niila/¼niila¾/g' tiedosto.txt
sed -i -e 's/niilo/¼niilo¾/g' tiedosto.txt
sed -i -e 's/niki/¼niki¾/g' tiedosto.txt
sed -i -e 's/niklas/¼niklas¾/g' tiedosto.txt
sed -i -e 's/niko/¼niko¾/g' tiedosto.txt
sed -i -e 's/nikodemus/¼nikodemus¾/g' tiedosto.txt
sed -i -e 's/nikolai/¼nikolai¾/g' tiedosto.txt
sed -i -e 's/nikolas/¼nikolas¾/g' tiedosto.txt
sed -i -e 's/nooa/¼nooa¾/g' tiedosto.txt
sed -i -e 's/noel/¼noel¾/g' tiedosto.txt
sed -i -e 's/nuutti/¼nuutti¾/g' tiedosto.txt
sed -i -e 's/nyyrikki/¼nyyrikki¾/g' tiedosto.txt
sed -i -e 's/ohto/¼ohto¾/g' tiedosto.txt
sed -i -e 's/oiva/¼oiva¾/g' tiedosto.txt
sed -i -e 's/okko/¼okko¾/g' tiedosto.txt
sed -i -e 's/olavi/¼olavi¾/g' tiedosto.txt
sed -i -e 's/oliver/¼oliver¾/g' tiedosto.txt
sed -i -e 's/olli/¼olli¾/g' tiedosto.txt
sed -i -e 's/onni/¼onni¾/g' tiedosto.txt
sed -i -e 's/orvo/¼orvo¾/g' tiedosto.txt
sed -i -e 's/oskar/¼oskar¾/g' tiedosto.txt
sed -i -e 's/oskari/¼oskari¾/g' tiedosto.txt
sed -i -e 's/osmo/¼osmo¾/g' tiedosto.txt
sed -i -e 's/ossi/¼ossi¾/g' tiedosto.txt
sed -i -e 's/ossian/¼ossian¾/g' tiedosto.txt
sed -i -e 's/otso/¼otso¾/g' tiedosto.txt
sed -i -e 's/otto/¼otto¾/g' tiedosto.txt
sed -i -e 's/oula/¼oula¾/g' tiedosto.txt
sed -i -e 's/paavali/¼paavali¾/g' tiedosto.txt
sed -i -e 's/paavo/¼paavo¾/g' tiedosto.txt
sed -i -e 's/panu/¼panu¾/g' tiedosto.txt
sed -i -e 's/pasi/¼pasi¾/g' tiedosto.txt
sed -i -e 's/patrik/¼patrik¾/g' tiedosto.txt
sed -i -e 's/paul/¼paul¾/g' tiedosto.txt
sed -i -e 's/pauli/¼pauli¾/g' tiedosto.txt
sed -i -e 's/paulus/¼paulus¾/g' tiedosto.txt
sed -i -e 's/peetu/¼peetu¾/g' tiedosto.txt
sed -i -e 's/pekka/¼pekka¾/g' tiedosto.txt
sed -i -e 's/pekko/¼pekko¾/g' tiedosto.txt
sed -i -e 's/pellervo/¼pellervo¾/g' tiedosto.txt
sed -i -e 's/pentti/¼pentti¾/g' tiedosto.txt
sed -i -e 's/pertti/¼pertti¾/g' tiedosto.txt
sed -i -e 's/perttu/¼perttu¾/g' tiedosto.txt
sed -i -e 's/petja/¼petja¾/g' tiedosto.txt
sed -i -e 's/petri/¼petri¾/g' tiedosto.txt
sed -i -e 's/petteri/¼petteri¾/g' tiedosto.txt
sed -i -e 's/pietari/¼pietari¾/g' tiedosto.txt
sed -i -e 's/pirkka/¼pirkka¾/g' tiedosto.txt
sed -i -e 's/pyry/¼pyry¾/g' tiedosto.txt
sed -i -e 's/paivio/¼paivio¾/g' tiedosto.txt
sed -i -e 's/paivo/¼paivo¾/g' tiedosto.txt
sed -i -e 's/raafael/¼raafael¾/g' tiedosto.txt
sed -i -e 's/raimo/¼raimo¾/g' tiedosto.txt
sed -i -e 's/raine/¼raine¾/g' tiedosto.txt
sed -i -e 's/rainer/¼rainer¾/g' tiedosto.txt
sed -i -e 's/raino/¼raino¾/g' tiedosto.txt
sed -i -e 's/rami/¼rami¾/g' tiedosto.txt
sed -i -e 's/rasmus/¼rasmus¾/g' tiedosto.txt
sed -i -e 's/rauli/¼rauli¾/g' tiedosto.txt
sed -i -e 's/rauno/¼rauno¾/g' tiedosto.txt
sed -i -e 's/reijo/¼reijo¾/g' tiedosto.txt
sed -i -e 's/reima/¼reima¾/g' tiedosto.txt
sed -i -e 's/reino/¼reino¾/g' tiedosto.txt
sed -i -e 's/reko/¼reko¾/g' tiedosto.txt
sed -i -e 's/rene/¼rene¾/g' tiedosto.txt
sed -i -e 's/rikhard/¼rikhard¾/g' tiedosto.txt
sed -i -e 's/riku/¼riku¾/g' tiedosto.txt
sed -i -e 's/risto/¼risto¾/g' tiedosto.txt
sed -i -e 's/robert/¼robert¾/g' tiedosto.txt
sed -i -e 's/robin/¼robin¾/g' tiedosto.txt
sed -i -e 's/rolf/¼rolf¾/g' tiedosto.txt
sed -i -e 's/roni/¼roni¾/g' tiedosto.txt
sed -i -e 's/roope/¼roope¾/g' tiedosto.txt
sed -i -e 's/sakari/¼sakari¾/g' tiedosto.txt
sed -i -e 's/saku/¼saku¾/g' tiedosto.txt
sed -i -e 's/salomo/¼salomo¾/g' tiedosto.txt
sed -i -e 's/salomon/¼salomon¾/g' tiedosto.txt
sed -i -e 's/sami/¼sami¾/g' tiedosto.txt
sed -i -e 's/sampo/¼sampo¾/g' tiedosto.txt
sed -i -e 's/sampsa/¼sampsa¾/g' tiedosto.txt
sed -i -e 's/samu/¼samu¾/g' tiedosto.txt
sed -i -e 's/samuel/¼samuel¾/g' tiedosto.txt
sed -i -e 's/samuli/¼samuli¾/g' tiedosto.txt
sed -i -e 's/santeri/¼santeri¾/g' tiedosto.txt
sed -i -e 's/santtu/¼santtu¾/g' tiedosto.txt
sed -i -e 's/sasu/¼sasu¾/g' tiedosto.txt
sed -i -e 's/saul/¼saul¾/g' tiedosto.txt
sed -i -e 's/sauli/¼sauli¾/g' tiedosto.txt
sed -i -e 's/sebastian/¼sebastian¾/g' tiedosto.txt
sed -i -e 's/seppo/¼seppo¾/g' tiedosto.txt
sed -i -e 's/severi/¼severi¾/g' tiedosto.txt
sed -i -e 's/silvo/¼silvo¾/g' tiedosto.txt
sed -i -e 's/simo/¼simo¾/g' tiedosto.txt
sed -i -e 's/sipi/¼sipi¾/g' tiedosto.txt
sed -i -e 's/sippo/¼sippo¾/g' tiedosto.txt
sed -i -e 's/sisu/¼sisu¾/g' tiedosto.txt
sed -i -e 's/soini/¼soini¾/g' tiedosto.txt
sed -i -e 's/sulevi/¼sulevi¾/g' tiedosto.txt
sed -i -e 's/sulho/¼sulho¾/g' tiedosto.txt
sed -i -e 's/sulo/¼sulo¾/g' tiedosto.txt
sed -i -e 's/sylvester/¼sylvester¾/g' tiedosto.txt
sed -i -e 's/taavetti/¼taavetti¾/g' tiedosto.txt
sed -i -e 's/taavi/¼taavi¾/g' tiedosto.txt
sed -i -e 's/tahvo/¼tahvo¾/g' tiedosto.txt
sed -i -e 's/taisto/¼taisto¾/g' tiedosto.txt
sed -i -e 's/taito/¼taito¾/g' tiedosto.txt
sed -i -e 's/taneli/¼taneli¾/g' tiedosto.txt
sed -i -e 's/tapani/¼tapani¾/g' tiedosto.txt
sed -i -e 's/tapio/¼tapio¾/g' tiedosto.txt
sed -i -e 's/tarmo/¼tarmo¾/g' tiedosto.txt
sed -i -e 's/tarvo/¼tarvo¾/g' tiedosto.txt
sed -i -e 's/tatu/¼tatu¾/g' tiedosto.txt
sed -i -e 's/tauno/¼tauno¾/g' tiedosto.txt
sed -i -e 's/teemu/¼teemu¾/g' tiedosto.txt
sed -i -e 's/teijo/¼teijo¾/g' tiedosto.txt
sed -i -e 's/tenho/¼tenho¾/g' tiedosto.txt
sed -i -e 's/teo/¼teo¾/g' tiedosto.txt
sed -i -e 's/teppo/¼teppo¾/g' tiedosto.txt
sed -i -e 's/terho/¼terho¾/g' tiedosto.txt
sed -i -e 's/tero/¼tero¾/g' tiedosto.txt
sed -i -e 's/teuvo/¼teuvo¾/g' tiedosto.txt
sed -i -e 's/tiitus/¼tiitus¾/g' tiedosto.txt
sed -i -e 's/timi/¼timi¾/g' tiedosto.txt
sed -i -e 's/timo/¼timo¾/g' tiedosto.txt
sed -i -e 's/tino/¼tino¾/g' tiedosto.txt
sed -i -e 's/toimi/¼toimi¾/g' tiedosto.txt
sed -i -e 's/toivo/¼toivo¾/g' tiedosto.txt
sed -i -e 's/tomi/¼tomi¾/g' tiedosto.txt
sed -i -e 's/tommi/¼tommi¾/g' tiedosto.txt
sed -i -e 's/toni/¼toni¾/g' tiedosto.txt
sed -i -e 's/topi/¼topi¾/g' tiedosto.txt
sed -i -e 's/topias/¼topias¾/g' tiedosto.txt
sed -i -e 's/torsti/¼torsti¾/g' tiedosto.txt
sed -i -e 's/touko/¼touko¾/g' tiedosto.txt
sed -i -e 's/tuomas/¼tuomas¾/g' tiedosto.txt
sed -i -e 's/tuomo/¼tuomo¾/g' tiedosto.txt
sed -i -e 's/turkka/¼turkka¾/g' tiedosto.txt
sed -i -e 's/turo/¼turo¾/g' tiedosto.txt
sed -i -e 's/tuukka/¼tuukka¾/g' tiedosto.txt
sed -i -e 's/tuure/¼tuure¾/g' tiedosto.txt
sed -i -e 's/ukko/¼ukko¾/g' tiedosto.txt
sed -i -e 's/uljas/¼uljas¾/g' tiedosto.txt
sed -i -e 's/untamo/¼untamo¾/g' tiedosto.txt
sed -i -e 's/unto/¼unto¾/g' tiedosto.txt
sed -i -e 's/uolevi/¼uolevi¾/g' tiedosto.txt
sed -i -e 's/uoti/¼uoti¾/g' tiedosto.txt
sed -i -e 's/urho/¼urho¾/g' tiedosto.txt
sed -i -e 's/urmas/¼urmas¾/g' tiedosto.txt
sed -i -e 's/urpo/¼urpo¾/g' tiedosto.txt
sed -i -e 's/usko/¼usko¾/g' tiedosto.txt
sed -i -e 's/uuno/¼uuno¾/g' tiedosto.txt
sed -i -e 's/valdemar/¼valdemar¾/g' tiedosto.txt
sed -i -e 's/valentin/¼valentin¾/g' tiedosto.txt
sed -i -e 's/valio/¼valio¾/g' tiedosto.txt
sed -i -e 's/valo/¼valo¾/g' tiedosto.txt
sed -i -e 's/valto/¼valto¾/g' tiedosto.txt
sed -i -e 's/valtteri/¼valtteri¾/g' tiedosto.txt
sed -i -e 's/veeti/¼veeti¾/g' tiedosto.txt
sed -i -e 's/veijo/¼veijo¾/g' tiedosto.txt
sed -i -e 's/veikka/¼veikka¾/g' tiedosto.txt
sed -i -e 's/veikko/¼veikko¾/g' tiedosto.txt
sed -i -e 's/veini/¼veini¾/g' tiedosto.txt
sed -i -e 's/veli/¼veli¾/g' tiedosto.txt
sed -i -e 's/venni/¼venni¾/g' tiedosto.txt
sed -i -e 's/verneri/¼verneri¾/g' tiedosto.txt
sed -i -e 's/vertti/¼vertti¾/g' tiedosto.txt
sed -i -e 's/vesa/¼vesa¾/g' tiedosto.txt
sed -i -e 's/vihtori/¼vihtori¾/g' tiedosto.txt
sed -i -e 's/viktor/¼viktor¾/g' tiedosto.txt
sed -i -e 's/vilhelm/¼vilhelm¾/g' tiedosto.txt
sed -i -e 's/vilho/¼vilho¾/g' tiedosto.txt
sed -i -e 's/vili/¼vili¾/g' tiedosto.txt
sed -i -e 's/viljami/¼viljami¾/g' tiedosto.txt
sed -i -e 's/viljo/¼viljo¾/g' tiedosto.txt
sed -i -e 's/ville/¼ville¾/g' tiedosto.txt
sed -i -e 's/vilppu/¼vilppu¾/g' tiedosto.txt
sed -i -e 's/visa/¼visa¾/g' tiedosto.txt
sed -i -e 's/voitto/¼voitto¾/g' tiedosto.txt
sed -i -e 's/vainamo/¼vainamo¾/g' tiedosto.txt
sed -i -e 's/vaino/¼vaino¾/g' tiedosto.txt
sed -i -e 's/ylermi/¼ylermi¾/g' tiedosto.txt
sed -i -e 's/yrjana/¼yrjana¾/g' tiedosto.txt
sed -i -e 's/yrjo/¼yrjo¾/g' tiedosto.txt

sed -i -e 's/ annam¼ari¾ / annam¼ari¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ annam¼ari¾a / annam¼ari¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ annem¼ari¾e / annem¼ari¾edx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ c¼ari¾ta / c¼ari¾tadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ele¼ano¾r / ele¼ano¾rdx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ e¼manu¾ele / e¼manu¾eledx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ e¼veli¾ina / e¼veli¾inadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ e¼veli¾na / e¼veli¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ h¼ilkka¾ / h¼ilkka¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ i¼rene¾ / i¼rene¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ kat¼ari¾ina / kat¼ari¾inadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ kat¼ari¾na / kat¼ari¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ka¼ari¾na / ka¼ari¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ k¼ari¾na / k¼ari¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ k¼ari¾ta / k¼ari¾tadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ marg¼ari¾ta / marg¼ari¾tadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ mar¼jukka¾ / mar¼jukka¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ma¼ari¾a / ma¼ari¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ma¼ari¾t / ma¼ari¾tdx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾ / m¼ari¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾a / m¼ari¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾ana / m¼ari¾anadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾anna / m¼ari¾annadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾anne / m¼ari¾annedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾e / m¼ari¾edx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾ka / m¼ari¾kadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾lyn / m¼ari¾lyndx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾ta / m¼ari¾tadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ m¼ari¾tta / m¼ari¾ttadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ nat¼ali¾a / nat¼ali¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ nat¼ali¾e / nat¼ali¾edx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ r¼iikka¾ / r¼iikka¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ s¼ari¾ / s¼ari¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ s¼ilja¾  / s¼ilja¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ s¼isko¾ / s¼isko¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ter¼esa¾ / ter¼esa¾dx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ve¼roni¾ca / ve¼roni¾cadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ v¼ale¾ntina / v¼ale¾ntinadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ v¼ale¾riya / v¼ale¾riyadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ale¾ksandra / ¼ale¾ksandradx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ale¾na / ¼ale¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ale¾sja / ¼ale¾sjadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ale¾ssandra / ¼ale¾ssandradx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ale¾xandra / ¼ale¾xandradx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ale¾xia / ¼ale¾xiadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾ce / ¼ali¾cedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾cia / ¼ali¾ciadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾cja / ¼ali¾cjadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾isa / ¼ali¾isadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾na / ¼ali¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾ne / ¼ali¾nedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾sa / ¼ali¾sadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾sha / ¼ali¾shadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾son / ¼ali¾sondx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ali¾ssa / ¼ali¾ssadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼anton¾ela / ¼anton¾eladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼anton¾ella / ¼anton¾elladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼anton¾ette / ¼anton¾ettedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼anton¾ia / ¼anton¾iadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼anton¾ietta / ¼anton¾iettadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼anton¾ina / ¼anton¾inadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ari¾adna / ¼ari¾adnadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ari¾anne / ¼ari¾annedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ari¾ela / ¼ari¾eladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼ari¾untuya / ¼ari¾untuyadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼daniel¾a / ¼daniel¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼daniel¾e / ¼daniel¾edx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼daniel¾la / ¼daniel¾ladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼daniel¾le / ¼daniel¾ledx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼eerik¾a / ¼eerik¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼gabriel¾a / ¼gabriel¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼gabriel¾e / ¼gabriel¾edx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼gabriel¾la / ¼gabriel¾ladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼gabriel¾le / ¼gabriel¾ledx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼harri¾et / ¼harri¾etdx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼henri¾eta / ¼henri¾etadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼henri¾etta / ¼henri¾ettadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼henri¾ikka / ¼henri¾ikkadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼henri¾ina / ¼henri¾inadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼henri¾ke / ¼henri¾kedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jani¾ca / ¼jani¾cadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jani¾ka / ¼jani¾kadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jani¾na / ¼jani¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jani¾ne / ¼jani¾nedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jani¾ta / ¼jani¾tadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼janne¾ke / ¼janne¾kedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jose¾fien / ¼jose¾fiendx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jose¾fiina / ¼jose¾fiinadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jose¾fina / ¼jose¾finadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jose¾fine / ¼jose¾finedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼jose¾phine / ¼jose¾phinedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kai¾ja / ¼kai¾jadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kai¾sa / ¼kai¾sadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kai¾sla / ¼kai¾sladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kai¾su / ¼kai¾sudx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kai¾tlin / ¼kai¾tlindx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kai¾tlyn / ¼kai¾tlyndx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kari¾anne / ¼kari¾annedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kari¾n / ¼kari¾ndx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kari¾na / ¼kari¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kari¾ne / ¼kari¾nedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kari¾shma / ¼kari¾shmadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kari¾ta / ¼kari¾tadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼kim¾berly / ¼kim¾berlydx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼lari¾sa / ¼lari¾sadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼lari¾ssa / ¼lari¾ssadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼leo¾na / ¼leo¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼leo¾nie / ¼leo¾niedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼manu¾ela / ¼manu¾eladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼martin¾a / ¼martin¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼martin¾e / ¼martin¾edx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼max¾ine / ¼max¾inedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼mika¾ela / ¼mika¾eladx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼niko¾lett / ¼niko¾lettdx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼niko¾letta / ¼niko¾lettadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼orvo¾kki / ¼orvo¾kkidx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼paul¾a / ¼paul¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼paul¾iina / ¼paul¾iinadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼paul¾ina / ¼paul¾inadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼paul¾ine / ¼paul¾inedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼petri¾ina / ¼petri¾inadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼robert¾a / ¼robert¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼sami¾ra / ¼sami¾radx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼simo¾na / ¼simo¾nadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼simo¾ne / ¼simo¾nedx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼valentin¾a / ¼valentin¾adx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼viktor¾ia / ¼viktor¾iadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼viktor¾iia / ¼viktor¾iiadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼viktor¾ija / ¼viktor¾ijadx3x1x3x7x3 /g' tiedosto.txt
sed -i -e 's/ ¼vilhelm¾iina / ¼vilhelm¾iinadx3x1x3x7x3 /g' tiedosto.txt

sed -i.bak '/dx3x1x3x7x3/d' tiedosto.txt
cp tiedosto.txt.bak m358_backup_1.txt # varmuuskopioi tiedoston jossa on naisten nimet tagattuna mutta ei vielä poistettuna ja epäselvät nimet jäljellä
rm tiedosto.txt.bak
cp tiedosto.txt m358_backup_2.txt # varmuuskopioi tiedoston jossa on naisten nimet poistettuna, mutta epäselvät nimet jäljellä
grep ¼ tiedosto.txt > temp.txt # luo tiedoston jossa on vain miesten nimet
rm tiedosto.txt
cp temp.txt tiedosto.txt
rm temp.txt
rm m358_backup_1.txt # tuhoaa varmuuskopion, jossa on naisten nimet tagattuna mutta ei vielä poistettuna ja epäselvät nimet jäljellä
rm m358_backup_2.txt # tuhoaa varmuuskopion, jossa on naisten nimet poistettuna, mutta epäselvät nimet jäljellä