Sponsored Content
Full Discussion: How to make copy work faster
Top Forums Shell Programming and Scripting How to make copy work faster Post 302336896 by prasperl on Thursday 23rd of July 2009 04:51:26 AM
Old 07-23-2009
I have a script which performs env set up kind of action and it takes 6 minutes to complete.


Out of the 6 minutes,1.5 minutes is being spent to copy a folder which contains executables.


I am jus doing a cp -rf....


So i want to try an alternative if there is any to save some time.....


I tried to tar and then copy....but that too accounts to the same amount of time
 

10 More Discussions You Might Find Interesting

1. Solaris

looking for different debugger for Solaris or to make sunstudio faster

im using the sunstudio but it is very slow , is there ant other GUI debugger for sun Solaris or at list some ways to make it faster ? im using to debug throw telnet connection connected to remote server thanks (0 Replies)
Discussion started by: umen
0 Replies

2. Shell Programming and Scripting

Can anyone make this script run faster?

One of our servers runs Solaris 8 and does not have "ls -lh" as a valid command. I wrote the following script to make the ls output easier to read and emulate "ls -lh" functionality. The script works, but it is slow when executed on a directory that contains a large number of files. Can anyone make... (10 Replies)
Discussion started by: shew01
10 Replies

3. Shell Programming and Scripting

awk help to make my work faster

hii everyone , i have a file in which i have line numbers.. file name is file1.txt aa bb cc "12" qw xx yy zz "23" we bb qw we "123249" jh here 12,23,123249. is the line number now according to this line numbers we have to print lines from other file named... (11 Replies)
Discussion started by: kumar_amit
11 Replies

4. Red Hat

Re:How to make the linux pc faster

Hi, Can any one help me out in solving the problem i have a linux database server it is tooo slow that i am unable to open even the terminial is there any solution to get rid of this problem.How to make this server faster. Thanks & Regards Venky (0 Replies)
Discussion started by: venky_vemuri
0 Replies

5. Shell Programming and Scripting

Running rename command on large files and make it faster

Hi All, I have some 80,000 files in a directory which I need to rename. Below is the command which I am currently running and it seems, it is taking fore ever to run this command. This command seems too slow. Is there any way to speed up the command. I have have GNU Parallel installed on my... (6 Replies)
Discussion started by: shoaibjameel123
6 Replies

6. Shell Programming and Scripting

Make script faster

Hi all, In bash scripting, I use to read files: cat $file | while read line; do ... doneHowever, it's a very slow way to read file line by line. E.g. In a file that has 3 columns, and less than 400 rows, like this: I run next script: cat $line | while read line; do ## Reads each... (10 Replies)
Discussion started by: AlbertGM
10 Replies

7. HP-UX

Faster command for file copy than cp ?

we have 30 GB files on our filesystem which we need to copy daily to 25 location on the same machine (but different filesystem). cp is taking 20 min to do the copy and we have 5 different thread doing the copy. so in all its taking around 2 hr and we need to reduce it. Is there any... (9 Replies)
Discussion started by: shipra_31
9 Replies

8. Shell Programming and Scripting

awk changes to make it faster

I have script like below, who is picking number from one file and and searching in another file, and printing output. Bu is is very slow to be run on huge file.can we modify it with awk #! /bin/ksh while read line1 do echo "$line1" a=`echo $line1` if then echo "$num" cat file1|nawk... (6 Replies)
Discussion started by: mirwasim
6 Replies

9. Shell Programming and Scripting

How to make awk command faster?

I have the below command which is referring a large file and it is taking 3 hours to run. Can something be done to make this command faster. awk -F ',' '{OFS=","}{ if ($13 == "9999") print $1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12 }' ${NLAP_TEMP}/hist1.out|sort -T ${NLAP_TEMP} |uniq>... (13 Replies)
Discussion started by: Peu Mukherjee
13 Replies

10. Shell Programming and Scripting

How to make faster loop in multiple directories?

Hello, I am under Ubuntu 18.04 Bionic. I have one shell script run.sh (which is out of my topic) to run files under multiple directories and one file to control all processes running under those directories (control.sh). I set a cronjob task to check each of them with two minutes of intervals.... (3 Replies)
Discussion started by: baris35
3 Replies
prebind(1M)															       prebind(1M)

NAME
prebind - prepare frequently executed programs for faster startup SYNOPSIS
file] [path-list] DESCRIPTION
prepares some frequently executed programs for faster startup using (see fastbind(1)), and updates the IPD database for the modified files. Many frequently used commands such as etc. are so short lived that the program startup time takes up a major part of the total run time of each instance. In user-space, a big chunk of startup time could be spent in the dynamic loader, dld.so(5), in resolving the references among the program and its shared library dependencies. This startup overhead can be avoided using Patch level changes affecting related shared libraries (e.g. libc) can obsolete the information stored in an executable. So must be invoked after each such change, to ensure consistent levels of performance. As writes symbol resolution information into the executable, the metadata of the software product that provides the executable must be updated to reflect the changes. facilitates the use of It invokes on some executables known to be frequently used on HP-UX systems and updates the IPD database using see swmodify(1M). By default, operates on a pre-defined list of executables. Users can also specify an alternate list of executables by providing it in a file or as a path-list on the command line. For complete details, refer to the whitepaper at Options supports the following option: Prints the usage information. Prints a preview of commands that will be invoked, without actually invoking them. Removes information from the specified (or default) list of executables. Reads the list of executables from file. Arguments can read a list of executables either from the command line or from a file. Each command-line argument or each line in the file will be considered as the full path to an executable on which is to be invoked. Lines beginning with a pound character in the file will be consid- ered as comments and ignored. WARNINGS
uses (see swlist(1M)) to retrieve software product information and so may take a long time to complete, depending on the system software configuration. It is recommended to be used only after patch changes that may affect executables of interest. needs to be run with appropriate privileges as required to write to the executables and to run The executables must be writeable. RETURN VALUES
returns the following values: Successful completion. Failure. An error has occurred. FILES
By default, acts on the following files: While is yet another frequently used executable that can benefit from it is almost always in use and including it in the default list would generate errors. It is recommended that be run mannually on this executable when it is not in use (such as from a root shell, with no users logged in). All these executables depend on and some other similar shared libraries, so it is recommended that be run whenever any of the files men- tioned above are changed. AUTHOR
was developed by Hewlett-Packard. SEE ALSO
fastbind(1), swmodify(1M). Itanium(R)-based Systems Only prebind(1M)
All times are GMT -4. The time now is 09:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy