Find the answer to your Linux question:
Results 1 to 5 of 5
Hi, I am looking for a bash script that will convert a formatted piece text in a txt document to a list of words. (The aim is to then to ...
  1. #1
    Just Joined!
    Join Date
    Jun 2011
    Posts
    3

    formated text to list

    Hi,

    I am looking for a bash script that will convert a formatted piece text in a txt document to a list of words. (The aim is to then to import that list into things like cross words)

    Regards

  2. #2
    Linux Guru
    Join Date
    May 2011
    Posts
    1,843
    Can you post an example of what the formatted text would look like, and what the list of words should look like?

  3. #3
    Just Joined!
    Join Date
    Jun 2011
    Posts
    3
    Hi, below is an example - for short texts it's easy to do manually but gets time consuming with longer texts.
    Regard




    text

    Selain itu, karena terdapat banyak turis yang datang dari negara Barat, terdapat banyak remaja yang terpengaruh oleh mode Barat. Pada dewasa ini, remaja suka memakai pakaian yang bergaya Barat. Jumlah orang remaja yang berpakaian tradisional pada masa kini sedikit saja. Seterusnya, lingkungan pulau Bali juga terancam.

    list of words

    Selain
    itu
    karena
    terdapat
    banyak
    turis
    yang
    datang
    dari
    negara
    Barat
    terdapat
    banyak
    remaja
    yang
    terpengaruh
    oleh
    mode
    Barat
    Pada
    dewasa
    ini
    remaja
    suka
    memakai
    pakaian
    yang
    bergaya
    Barat
    Jumlah
    Jumlah
    orang
    remaja
    yang
    berpakaian
    tradisional
    pada
    masa
    kini
    sedikit
    saja
    Seterusnya
    lingkungan
    pulau
    Bali
    juga
    terancam

  4. #4
    Linux Guru
    Join Date
    May 2011
    Posts
    1,843
    okay, so if that text was in "file.txt", you could do:
    Code:
    cat file.txt |sed -e 's| |\n|g'

  5. #5
    Just Joined!
    Join Date
    Jun 2011
    Posts
    3
    wow thanks - no idea what it means but works a treat!

    thanks again

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...