HELP - LIST IMPORTER - anyone?? HELP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • retronerd
    Registered User
    • Mar 2006
    • 1

    #1

    HELP - LIST IMPORTER - anyone?? HELP

    i have a list of files.... all text files... i need to import the list of file names into an excel or text document.. for example.. my files are called house1.txt house4.txt tax4.txt etc... i need to import hundreds of these FILE NAMES into an excel document like this

    house1
    house4
    tax4

    etc

    anyone know how to do this?
  • Ace_luffy
    www.creationcrew.com
    • Feb 2005
    • 12166

    #2
    bump for the cause.....


    ++ Adult and Mainstream Websites Designs | 10 banners for only $50 | html5 Banners ++
    email : [email protected] Telegram : https://t.me/creationcrew WhatsApp : +63 956 420 4819 | HTML5/Responsive Site - Div/CSS - ElevatedX - NATs - Wordpress

    Comment

    • Linguist
      Confirmed User
      • Apr 2004
      • 1706

      #3
      In linux/unix (or use cygwin if you're in windows), put them all into one directory and then:

      ls -1 > file.txt

      if you want to open it in Excel:

      ls -1 > file.csv
      315-310

      Comment

      • Linguist
        Confirmed User
        • Apr 2004
        • 1706

        #4
        I misread the question, if you don't want to have .txt displayed at the end, do this:

        ls -1 | cut -d . -f 1 > output.txt

        Make sure none of the files have "." as a part of their file name.
        315-310

        Comment

        Working...