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 Chris Miller 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. moaebi

    IF-THEN-ELSE does not work!

    I have a Solution for my problem now! I use "goto"! Now my script is working. :-) #!/bin/csh set m_path = "/net/fileserv1/leiterplatten/gerberdaten/$1" (ls *.inf *.hcp *.info *.hcpy *.gbr *.drl > dir.lst) >& error.lst start: if(! -z error.lst) goto nofile if(-e...
  2. moaebi

    IF-THEN-ELSE does not work!

    :-( About my second script: The first if-then-else does not work. Why?? Thank you for your answers. Bye Moreno
  3. moaebi

    IF-THEN-ELSE does not work!

    I tryed to make the script as following: #!/bin/csh -xv ls *.inf *.hcp *.info *.hcpy *.gbr *.drl >& dir.lst if(! -z dir.lst) then echo no files to copy else echo --------------------------------------------------------------------------- echo Files will be copied into folder...
  4. moaebi

    IF-THEN-ELSE does not work!

    Here my whole script: #!/bin/csh -xv if(-e *.inf||-e *.hcp||-e *.info||-e *.hcpy||-e *.gbr||-e *.drl)then echo ---------------------------------------------------------------------------- echo Files will be copied into Folder $1 on server fileserv1 echo...
  5. moaebi

    IF-THEN-ELSE does not work!

    Thank you. The Message is: *.inf: Ambiguous Bye Moreno
  6. moaebi

    IF-THEN-ELSE does not work!

    Thank you. It is a good idea. But it also doesen't work. For information I work with solaris 1.1.1b. Pherhaps it has a bug? I can't upgrade to a higher solaris because I have a Software which does only work till solaris 1.1.1b. Thank you. Bye. Moreno

Part and Inventory Search

Back
Top