Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. atojaf

    creating a shortcut to the desktop using bat files

    I know some basic Unix commands. You're right, the line of code that I want to append to the win.ini file seem to be attaching itself to the end of entries already on the file. I wish windows has sed or grep type of utility . or omething. thanks .you helped me a lot.
  2. atojaf

    creating a shortcut to the desktop using bat files

    I meant thanks chipk!
  3. atojaf

    creating a shortcut to the desktop using bat files

    That's chipk. I just realized what I was doing wrong on my batch file. I wasn't putting the path - C:\documents and settings - on quotes. Your last suggestions works. Now if I could just find a way to create a batch file that will enter a line of code on the Win.ini in XP, I will be done with...
  4. atojaf

    creating a shortcut to the desktop using bat files

    I want to create a batch file so that when our users needs this icon on their desktop, I can just tell them to execute this file from their net drive- part of this batch also install create a Windows folder on their C: drive and to create a Win.ini file- chipk I had done what you suggested -...
  5. atojaf

    creating a shortcut to the desktop using bat files

    I can't do it this way chipk, because I am trying to create an .lnk file from an .exe file not from a .lnk file
  6. atojaf

    creating a shortcut to the desktop using bat files

    Thanks chip. I'll try this.
  7. atojaf

    creating a shortcut to the desktop using bat files

    I need to create a shortcut on the desktop for this executble using a batch file. Please help. Thanks a bunch.. c:\CSH\csh.exe
  8. atojaf

    Sed commands in several lines

    thanks for all the help guys!!
  9. atojaf

    Saving a copy directly to the burner drive.

    has anyone here ever seen this message "The disk you were saving to or the disk used for temporary files is full. Free some space on this disk and try again. or save to a different disk" when saving a copy of an adobe file directly to the cd burner drive -using xp cd burner interface. Thanks.
  10. atojaf

    COLLATE SQL_Latin1_General .....

    ok thanks Vongrunt. By the way, I using it for basically to practice populating my Oracle server with tables that are already existing from my SQL server.
  11. atojaf

    COLLATE SQL_Latin1_General .....

    One more thing, so basically if I remove the "COLLATE SQL_Latin1_General_CP1_CI_AS" and it will still be ok since we are in the states. I mean we are using western codes?
  12. atojaf

    COLLATE SQL_Latin1_General .....

    Thanks very much. This is very helpful for me. I basically created a unix script to remove "COLLATION....." from the outputted Sql Server script so that I can ran the same script to a Oracle server.
  13. atojaf

    COLLATE SQL_Latin1_General .....

    I created a couple of tables on my SQL Server using the wizard. Then, I generated the sql scripts to be outputted on a *.sql file. My question is, what is the meaning of "COLLATE SQL_Latin1_General_CP1_CI_AS" at the end of each sql script block? thanks a lot.
  14. atojaf

    adding ; on the end of a paragraph

    thanks for the input guys. Here is what I got: when I executed these scripts: sed '/^insert\|^delete\|^update/s/^;/' source , I got this message>>>>> "/^insert\|^delete\|^upda.......":unterminated substitute in regular expression error message also when I executed this: awk...
  15. atojaf

    adding ; on the end of a paragraph

    Thanks for your help PHV. I am sorry I should have been more specific. here is what I am trying to do: i have several blocks of sql script that I want to run at the same time . So at the end of each block, I want to append a ; . These sripts are all located in the same file. ie...
  16. atojaf

    Sed commands in several lines

    Could you please tell me how to separate these commands in several lines. Each line starting with the -e. I am running this on a Korn shell. thanks again. cat test.txt | sed -e '/log/ s/log/ /g' -e '/car/ s/car/ /g' -e '/GO/ s/GO/ /g' -e '/ON/ s/ON/ /g'
  17. atojaf

    adding ; on the end of a paragraph

    it's actually an Oracle script. I want to add ; (semicolon) at the end of the script.
  18. atojaf

    adding ; on the end of a paragraph

    Hello, COuld you please tell me how to add ; at the end of each paragraph. Can I use sed? if so what is the syntax. thanks very much.

Part and Inventory Search

Back
Top