Summary: How do you find files, then copy the files into an existing directory. I am to find files starting with N which is not more than 10 days old, then cop...
Summary: How do you find files, then copy the files into an existing directory. I am to find files starting with N which is not more than 10 days old, then cop...
Summary: I know this is quite simple stuff, but I'm not into this kind of programming... I have to set up a cron job that does the following 2 steps on a web s...
Summary: Hi, I'm trying to use a combination of find -exec and grep with little success. Basically, I need a script to search for files modified within the la...
Summary: No, that's a bad assumption. Copying directory structures is completely different from renaming directories. Tar or cpio are typically used. Conside...
Summary: How do I program (in C) to create a directory and then move into that directory and copy files into the new directory?? for example.. mkdir(newdirecto...
Summary: I have a small problem @ work. I am trying to write a script that will seach a directory for a file with the contents 'IS314.1'. Then move that file 2...
Summary: Im fairly new to Unix and I have no idea how to find a directory with a particular name that I know exists somewhere either at or below the current wo...
Summary: Regarding the G that is still there, you need to remove cut -c3-. The new construct of FILE2=${FILE##*/G} needs to find /G otherwise it will strip no...
Summary: How are you trying to back it up? Show us the command. One way would be to tar it and then compress it and then copy it somewhere. # move to the dir...
Summary: Still can't get this to work: This is what I am trying to do 1) The fist file I am looking for is in this directory: xnet-stc/int/exe_inbound/histo...
Summary: hi there, how to find files more than 90 days and copy it to another directory using HPUX/unix command? is the command same for unix or hpux ? ...
Summary: Thanks Luka and Nails for your replies. Actually I want to copy or move all the subdirectories without copying the directory which holds these subdire...
Summary: Find files that exceed 1000000 characters (this will list the fullpath filename): find /home/users -type f -size +1000000c Or you can tell the find co...
Summary: A new laptop has just been setup running XP. We access the UNIX box via a Telnet session on it. Now however, if we do a copy & paste from anywhere (Wo...
Summary: I know how to move files between windows and my unix box using FTP at cmd and then connecting via that way. I wanted to know if there is a way to move...
Summary: Hi, I have a directory /logo/jpg/CustArtRepository which contains around a million files in it. My requirement is to search the oldest 5000 files from...
Summary: I have a directory sturucture as below /appl/export/ivdevl/comp /appl/export/ivdevl/comp/buildscripts /appl/export/ivdevl/comp/buildscripts/pkg.sh /ap...
Summary: Perl Expert please assist: This not a hw assignment, this a research work. I have started it have some code in place, I need your help. Need to compa...
Summary: I m new to unix command, can everyone guide me for below scenario. I need to copy the files in temp folder and replace it in test folder. Before overw...
Summary: Hi, compare two files and difference will be moved into separate file.if anybody having code for this please send asap. using diff command how can w...
Summary: You would get command not found for one of a couple of reasons. 1) the shell script is not in your path. Try executing it with ./scriptname or copying...