[SOLVED] what is lighter on the system, variable calls, or full path in BASH script?
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
This is just an example, but if i were to use the 2nd option to copy say 30-40 specific files/types of files would that be lighter on the system, then the option with 1 variables, or does it really matter. typically this would be run ONCE on a system to transfer data from old computer to new.
in case you want to copy 30-40 files (or less than a few thousands) it does not matter at all.
variables are used to write better scripts (which can be handled easier)
in case you want to copy 30-40 files (or less than a few thousands) it does not matter at all.
variables are used to write better scripts (which can be handled easier)
let me be more specific, there can be thousands of files, but we are talking file type extension, etc... like .dat and .idx from the data base, etc...
if it really does not matter, then ill leave it in simple plan text without creating any functions, or what not.
I think it really does not matter, copying files will take much more time
__________________________________
Happy with solution ... mark as SOLVED
If someone helps you, or you approve of what's posted, click the "Add to Reputation" button, on the left of the post.
The variable expansion is only performed once on the call to copy, it doesn't matter how many files are actually copied. If you're only calling the copy 30-40 times, then you're only doing the variable expansion 30-40 times, and it will have no effect on the speed of the process. If this was inside a high speed loop that was iterating thousands/millions of times in a matter of seconds, then it might start to make a difference, but the copy itself will use FAR more time than the variable expansion in this case, so it'll make no practical difference.
Last edited by suicidaleggroll; 05-30-2012 at 12:48 PM.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.