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!

Search results for query: *

  1. razalas

    Chinglish?

    Does Google offer an "untranslate" service? [tongue] Code what you mean, and mean what you code! But by all means post your code! Razalas
  2. razalas

    process tree

    I needed to identify all the child processes belonging to a given process id. From a search here, I found this post [thread822-721794], which suggested ptree (from the Solaris world). However, ptree is not available on the RedHat installation that I work on, but instead provides "pstree". I...
  3. razalas

    Please, help me with working with files!!

    Generally speaking different records defined in the same FD all share the same storage (i.e. are different views of the same area of memory). So writing all three records at one time will generate three separate records on the file but all with the exact same data. Regarding the READ...
  4. razalas

    Translate element names

    Tom, many thanks! Those changes solved my issue. Now to see if I can apply the same concept to larger examples. Don't know how you find time to watch all these forums, but thank you, thank you, thank you. Code what you mean, and mean what you code! But by all means post your code! Razalas
  5. razalas

    Translate element names

    From what I read on the internet, this ought to be a simple task to accomplish, but I can't seem to get XSLT to do what I need... Am receiving an XML message and I need to create an identical output XML message except with some of the element names replaced. In the input message below, I would...
  6. razalas

    How to write a script to find new files in a directory?

    When we do this sort of operation at my installation, we generally rename each file as we process it (e.g. rename whatever.send to whatever.sent). You don't have to do that, but for us, it makes it obvious which files were processed. Code what you mean, and mean what you code! But by all means...
  7. razalas

    My great-nephew

    Santa Mufasa, so if DJJ's nephew had an online dictionary available, he might want to be a chief instead. But I don't see how that would have helped him to get to be an astronaut. Code what you mean, and mean what you code! But by all means post your code! Razalas
  8. razalas

    Remove files

    PHV, another excellent suggestion! Thanks! Code what you mean, and mean what you code! But by all means post your code! Razalas
  9. razalas

    Remove files

    Great point! I knew there was a good a reason for checking here. thanks, Olded. Have a star! Code what you mean, and mean what you code! But by all means post your code! Razalas
  10. razalas

    Remove files

    On our system we generate a large number of temporary files every day, and at the end of the day, we remove them. Except lately, the number of files has grown to be quite long, so the remove command we are executing is failing, as shown below: $ rm RECPT-ZONE* -bash: /bin/rm: Argument list too...
  11. razalas

    ON CALL exception

    It sounds like what you are saying is that you expected the ON EXCEPTION clause to be executed but was not. But you are not clear about what evidence there is to show that the ON EXCEPTION clause statements were not executed. It sounds to me like they were executed, they simply did not do what...
  12. razalas

    Initialize large table

    Back when I used to work in the MVS (z/OS) world (over 12 years ago), the last application I worked on included several large WS tables that needed to be initialized "for each policy" and Strobe analysis also indicated that a disproportionately large percentage of time was being spent...
  13. razalas

    curl HTTP post

    Just in case anybody is interested, it seems like my problem was due to trying to append data using multiple --data-binary parameters. According to the man page, multiples of --data-binary should append data. I actually had three: one for everything up to the "binary data", one for the "binary...
  14. razalas

    curl HTTP post

    Not sure if this is the best forum to post this, but hopefully somebody here might be able to point me in the right direction. I am trying to POST an HTTP request to a business partner's web site using the Linux curl command, but I am having trouble sending all my content. They want the message...
  15. razalas

    Resolving/Expanding all COPY statements to make single COBOL unit on MVS

    Wow! I've been off of MVS for nearly 12 years, but I would have given my left arm for this utility back then. Nice bit of research. Have to file this one away in my "treasure" chest. Catch a star from me! Thanks Marc! Code what you mean, and mean what you code! But by all means post your...
  16. razalas

    CGI shell script using bash

    Feherke thanks for the informative reply. Catch a star! Code what you mean, and mean what you code! But by all means post your code! Razalas
  17. razalas

    CGI shell script using bash

    Raggmopp, I would tend to agree with Feherke's warning about using shell scripts for CGI, but in the interest of figuring things out [and taking note of what feherke says about POST], I believe what you need is to "read" the data you are looking for from standard input. Something like this...
  18. razalas

    ftp synchronized mget/mdel

    Chuck, Interesting solution. We generally only run bash, but if it solves the problem, its worth a try. Thanks. I'll let you know if it works for me. Code what you mean, and mean what you code! But by all means post your code! Razalas
  19. razalas

    ftp synchronized mget/mdel

    Need to do an mget for an unspecified number of files and follow that with an mdel that only deletes the specific files that were "gotten". Is there a way to do this all within ftp? Seems like I will have to do the mget first, then outside of ftp, identify the files that were retrieved and...
  20. razalas

    Want a detailed line-by-line log of the COBOL program

    You might try asking if your shop has a profiler tool available. Not very likely. Tended to be expensive and typically underused. Can't remember the name of the last one I encountered. That was in the previous century, so who knows if it's still around. Think it was a Computer Associates ("CA")...

Part and Inventory Search

Back
Top