<br clear="all">Regards,<br>Vijay Shanker Dubey<br><br>
<br><br><div class="gmail_quote">On Mon, Mar 1, 2010 at 10:52 PM, Ian Coetzee <span dir="ltr"><<a href="mailto:ubuntu@iancoetzee.za.net">ubuntu@iancoetzee.za.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

On 2010/03/01 06:19 PM, James Kaufman wrote:<br>
<br>
<snip, hope its not too much :) ><br>
<div class="im">> This doesn't look right to me:<br>
><br>
> for file in $FILES ; do<br>
>       echo "Going to execute command $joinCommand"<br>
>       joinCommand="$joinCommand $file"<br>
> done<br>
><br>
</div>No actually it is right. Look at the cmd very carefully<br>
<br></blockquote><div><br></div><div>Yes it is right But I have some issues. Even if the FILES array has three file locations but at the end only first location is added to join command. do you see any particular error for this. </div>

<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
It will just append the file to the end of the command, every turn it<br>
executes it rewrites "joinCommand" with "$joinCommand" + next file.<br>
<br>
I just had a random thought, what happens when you just execute the<br>
command alone, without all this mucking about in a script?<br>
<br>
try "mencoder -oac copy -ovc copy -o joined-output.avi <file1> <file2>"<br>
replacing either <file1> or <file2> with the file that fails<br>
(/home/vijay/downloads/Reservoir/Reservoir.avi)<br>
<br></blockquote><div>The command works like charm. I used it before. But i thought to give shell scripts a try and decided to create s script for this task. I wish to create a simple application with simple UI to join two files and this it the first step towards the process. :)  </div>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Tell us how it goes.<br>
<br>
Regards<br>
<font color="#888888">Ian<br>
</font><br>
PS: did you write that script self, or downloaded it?<br></blockquote><div><br></div><div><br></div><div>Well, This is whole my own creation, AND my second shell script.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">


<div><div></div><div class="h5">> If you are joining two files, A and B, that command will do something<br>
> like this:<br>
><br>
> mencoder -oac copy -ovc copy -o OUTPUT A mencoder -oac copy -ovc copy -o<br>
> OUTPUT B<br>
><br>
> Perhaps I am wrong. One thing you can try is to run your shell command<br>
> like this:<br>
><br>
> sh -x ./join_files.sh<br>
><br>
> Then the shell will echo each line it executes so you can easily trace<br>
> what it is doing.<br>
><br>
><br>
><br>
><br>
><br>
><br>
<br>
--<br>
ubuntu-users mailing list<br>
<a href="mailto:ubuntu-users@lists.ubuntu.com">ubuntu-users@lists.ubuntu.com</a><br>
Modify settings or unsubscribe at: <a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-users" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-users</a><br>
</div></div></blockquote></div><br>