Closed Thread
Results 1 to 4 of 4

Thread: Writing to a File - Shell Script Help!

  1. #1
    dirkfirst is offline Programming Expert
    Join Date
    May 2006
    Posts
    354
    Rep Power
    23

    Writing to a File - Shell Script Help!

    I need to know how to write data to a file from shell script! Can anyone help me???

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    brackett is offline Programmer
    Join Date
    May 2006
    Posts
    192
    Rep Power
    22
    echo "this will overwrite any existing file" > filename
    echo "this will append to an existing file" >> filename

  4. #3
    dirkfirst is offline Programming Expert
    Join Date
    May 2006
    Posts
    354
    Rep Power
    23
    Easy enough. Can I read a file by doing the opposite?

    echo < filename?

  5. #4
    Join Date
    Aug 2010
    Location
    Botswana
    Posts
    2
    Rep Power
    0

    Re: Writing to a File - Shell Script Help!

    hey wasup, uhm try this

    filename= "fileworld.txt"
    print "writing to file: %s" %filename
    file= open(filename,'w')
    file.write (" Hello file world!")
    file.close()
    #thats the source code i used and the output is in your notepad, dnt 4get to save the file as a .text file instead of .py

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 4 users browsing this thread. (0 members and 4 guests)

Similar Threads

  1. [HELP] convert Perl script to Bash shell script
    By Egypte in forum Linux Programming and Scripting
    Replies: 2
    Last Post: 04-24-2011, 05:37 PM
  2. Please Kindly Help me with shell script
    By alice06 in forum C and C++
    Replies: 1
    Last Post: 10-21-2010, 08:09 AM
  3. Shell Script Help!
    By SeanStar in forum Linux Programming and Scripting
    Replies: 6
    Last Post: 08-12-2010, 05:20 PM
  4. Using colors in Shell Script
    By ptt3 in forum Linux Programming and Scripting
    Replies: 1
    Last Post: 04-03-2008, 04:50 AM
  5. Old file shell script
    By Ronin in forum General Programming
    Replies: 6
    Last Post: 08-31-2006, 07:01 PM

Tags for this Thread

Bookmarks

Posting Permissions

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