Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
03-14-2010, 10:55 PM
|
#1
|
|
LQ 5k Club
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian Squeeze (server), Slackware 13.37 (netbook), Slackware64 14.0 (desktop),
Posts: 8,358
|
Bash: functional difference between process substitution and here string with $( ) ?
Hello
Further to solved LQ thread Bash: how to populate a list of arbitrarily named files?, what is the functional difference between feeding a loop with process substitution and feeding it with a here string with embedded command substitution?
ABSG pages: process substitution, here string and command substitution.
This works
Code:
while IFS= read -r -d '' file
do
files+=("$file")
done < <(find $dir -type f -print0)
but this does not work
Code:
while IFS= read -r -d '' file
do
files+=("$file")
done <<< "$(find $dir -type f -print0)"
Best
Charles
|
|
|
|
03-15-2010, 01:47 AM
|
#2
|
|
Senior Member
Registered: Jul 2005
Distribution: Slackware
Posts: 2,006
Rep: 
|
Process substitution sets up a FIFO and expands to the device file that fifo is associated with (/dev/fd/42 or somesuch). As such, all data from the command is redirected, doesn't matter what's in it.
The command substitution and here-string breaks because bash first does the command substitution, which chomps newlines from the end and cuts everything past a null in the data, since nulls aren't allowed in a string. Then, the here-string actually creates a here-document which actually creates a temporary file containing the string plus one newline at the end (since we chomped all of them earlier, but a valid text file must end each line with a newline).
Short story, the only way command substitution and here-string is equivalent to process substitution is when the content has exactly one newline at the end and no nulls whatsoever.
Last edited by tuxdev; 03-15-2010 at 01:50 AM.
|
|
|
1 members found this post helpful.
|
03-15-2010, 02:08 AM
|
#3
|
|
LQ 5k Club
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian Squeeze (server), Slackware 13.37 (netbook), Slackware64 14.0 (desktop),
Posts: 8,358
Original Poster
|
Thank you for that very clear explanation tuxdev 
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 03:53 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.
|
Latest Threads
LQ News
|
|