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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Ramu66

  1. Ramu66

    testing shell scripts

    What is the way to test a shell script. Actually iam a java programmer, and recently required to write some korn shell scripts. I just want to know is there any way to test a script, before putting it into production. Also what is the better way to test a script containing ftp, instead of...
  2. Ramu66

    script output

    Thanks
  3. Ramu66

    script output

    here is the content of the file filenumber filename 1 test.txt 2 test1.txt
  4. Ramu66

    script output

    I've the following script [code] integer ctr=0 cat files.txt | while read line do (( ctr+=1 )) if [[ ctr -ne 1 ]] then cp $(print $line | cut -f2 -d' ') /home/csis/rajus/test fi done [code] which is supposed to copy filename red from another file to a directory specified. It is doing...
  5. Ramu66

    ftp on multiple files

    could you elaborate please. Do you mean to say we can give a script as an argument to ftp command
  6. Ramu66

    ftp on multiple files

    I need to read a set of filenames from another file and ftp them to a remote system. What is the way to send it by using ftp command once and send them all in a loop instead of using ftp command in the loop thanks
  7. Ramu66

    Korn Shell Script

    How to write korn shell script, where i need to have a loop which for example runs for a minute and does a job inside for every 10 seconds. Thanks Ramu66

Part and Inventory Search

Back
Top