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 SkipVought 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. andyc333

    korn shell script

    Hi, Unfortunately you won't find too much on this. We encountered this problem at my work and this is what I came up with. (Again "correct" solution depends on what your needs are) PROBLEM: Need to transfer files via FTP from a machine A to another (machine B) using SSH protocols...
  2. andyc333

    DVD support on AIX5 ?

    Oops sorry that link came out wrong: http://www.gearsoftware.com/
  3. andyc333

    DVD support on AIX5 ?

    We were investigating this for a while with us. Officially, AIX 5+ supports UFS for DVD-RAM to mimic "packet writing" type environments on Windows. In other words the DVD is treated as a separate filesytem. Suppossedly this is only valid for the DVD-RAM drive IBM ships with it's...
  4. andyc333

    telnet to other box in middle of script

    hey jalge2, have you tried using "rsh" instead of a telnet? you can execute remote commands(or scripts) on other boxes with it. when that command is done you are returned to the current box. but my question is what is it you are trying to execute on the other box? Andy
  5. andyc333

    Archive bits and ability to lock access time in AIX 4.x.x??

    Thanks Ygor! Now I don't have to waste time coming up with a wrapper of my own. Andy
  6. andyc333

    Last command in csh shell

    The set -o <editor> works for bash and korn. To add to Ranazar's post, set -o emacs will put you into the emacs mode of line editing. ctrl-p = up or previous command. ctrl-k = down or next command. esc-esc = filename completion The great thing about emacs is that you can edit and use the...
  7. andyc333

    Archive bits and ability to lock access time in AIX 4.x.x??

    Thanks sushveer. I have something similar to that but the problem is when we perform backups, via tar/cp -r/commercial products the access time gets updated. We have to do a weekly full backup (and daily incrementals) due to the large amount of data we have (3+ TB). So now you can see our...
  8. andyc333

    Archive bits and ability to lock access time in AIX 4.x.x??

    Hey all, I was wondering if in AIX 4.2.1 and 4.3.3 if there is such a thing as an archive bit in the JFS filesystem? I know that newer releases of AIX (and JFS) have this but I'm not sure if there is for older versions. Also is there is a way to preserve the &quot;access time&quot; in the...
  9. andyc333

    Last command in csh shell

    Easiest way without completely tweaking the CSH is to use the !! command from the prompt. This will redo the last command. If your history is setup then you can use !<event #> ie. %> echo &quot;HI&quot; HI %> !! HI %>history 1: echo &quot;HI&quot; %> !1
  10. andyc333

    How do I count files in a directory

    Hmm...I find that &quot;find&quot; is sometimes slow on larger filesystems. You can also try: du -a [starting point] | wc -l This will list ALL files & directories (udnerneath) the starting point but there is no distinction between a directory and a file. For that you gotta use the find command.

Part and Inventory Search

Back
Top