473,398 Members | 2,404 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

exec, system, passthru problem -- wrong output!

I've found a problem with exec, passthru, shell_exec & system.

I'm trying to run the following

exec("sort -r -n -k2,2 r1.txt > r2.txt")

with r1.txt being a numeric file. The file looks like this:

237 291 845 152 585 3
193 810 173 484 151 3
366 491 910 265 893 3
220 631 571 332 104 3
502 567 854 40 108 3
639 13 720 101 482 3
254 676 896 759 720 3
907 928 377 899 778 3
324 194 995 161 708 3
501 936 716 105 209 3

(The file is actually 1500 lines long, but this gives you an idea.
It's tab delimited, and the numbers are random: I created the file
using awk to test this).

Here's the problem:
If I run it with exec, passthru, shell_exec or system, THE FILE GETS
TRUNCATED. Instead of 1500 lines, I get 1338. But if I run the SAME
COMMAND in the shell (manually), THE SORT WORKS OK!

I run this in other files and the result is the same: the file gets
truncated. Also, I checked for special characters, but there are none:
the file contains just regular numbers and tabs. The problem seems to
be PHP since when I run the command manually I get correct results...

Any ideas?

Thanks.
Jul 17 '05 #1
3 3369
Jerry23 wrote:
I’ve found a problem with exec, passthru, shell_exec & system.

I’m trying to run the following

exec("sort -r -n -k2,2 r1.txt > r2.txt")

with r1.txt being a numeric file. The file looks like this:

237 291 845 152 585 3
193 810 173 484 151 3
366 491 910 265 893 3
220 631 571 332 104 3
502 567 854 40 108 3
639 13 720 101 482 3
254 676 896 759 720 3
907 928 377 899 778 3
324 194 995 161 708 3
501 936 716 105 209 3

(The file is actually 1500 lines long, but this gives you an idea.
It’s tab delimited, and the numbers are random: I created the file
using awk to test this).

Here’s the problem:
If I run it with exec, passthru, shell_exec or system, THE FILE GETS TRUNCATED. Instead of 1500 lines, I get 1338. But if I run the SAME
COMMAND in the shell (manually), THE SORT WORKS OK!

I run this in other files and the result is the same: the file gets
truncated. Also, I checked for special characters, but there are none: the file contains just regular numbers and tabs. The problem seems to be PHP since when I run the command manually I get correct results...
Any ideas?

Thanks.

Sounds impossible. PHP simply passes the command to the shell, so I
cannot think of a reason it would be truncated. Are you sure, very
weird. The only thing I can think of is that PHP puts some kind of
timing contraints on the command. Easy to test that, jut put a " &"
at the end of the command to have it run in the background, and not
subject to any timing constraints.

Another approach is to bring the output into php using the `---` as
in:
$a = `sort -r -n -k2,2 r1.txt`;
and see what $a looks like.

--
http://www.dbForumz.com/ This article was posted by author's request
Articles individually checked for conformance to usenet standards
Topic URL: http://www.dbForumz.com/PHP-exec-sys...ict125482.html
Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=418020
Jul 17 '05 #2
steve wrote:
Jerry23 wrote:
>
> Here’s the problem:
> If I run it with exec, passthru, shell_exec or system, THE FILE GETS
> TRUNCATED. Instead of 1500 lines, I get 1338. But if I run the SAME
> COMMAND in the shell (manually), THE SORT WORKS OK!

Sounds impossible. PHP simply passes the command to the shell, so I
cannot think of a reason it would be truncated. Are you sure, very
weird. The only thing I can think of is that PHP puts some kind of
timing contraints on the command. Easy to test that, jut put a " &"
at the end of the command to have it run in the background, and not
subject to any timing constraints.


IIRC that won't remove the constraint - the process will get a SIGHUP on
timeout of the php script - you'd need to isolate it from the signal (with
nohup) or run it in a seperate process group (e.g. `at now
run_shell_command`)

HTH

C.
Jul 17 '05 #3
Colin McKinnon <co**************@andthis.mms3.com> wrote in message news:<cc*******************@news.demon.co.uk>...
steve wrote:
Jerry23 wrote:
>
> Here?s the problem:
> If I run it with exec, passthru, shell_exec or system, THE FILE GETS > TRUNCATED. Instead of 1500 lines, I get 1338. But if I run the SAME
> COMMAND in the shell (manually), THE SORT WORKS OK!

Sounds impossible. PHP simply passes the command to the shell, so I
cannot think of a reason it would be truncated. Are you sure, very
weird. The only thing I can think of is that PHP puts some kind of
timing contraints on the command. Easy to test that, jut put a " &"
at the end of the command to have it run in the background, and not
subject to any timing constraints.


IIRC that won't remove the constraint - the process will get a SIGHUP on
timeout of the php script - you'd need to isolate it from the signal (with
nohup) or run it in a seperate process group (e.g. `at now
run_shell_command`)

HTH

C.


Colin, Steve:

OK Here's the deal: when I run them with & at the end (background), I
get the correct output. When I run them without the & I get the files
truncated. It looks like there's a problem with timing constraints as
you guys suggested.
I'll be following this problem (post it in some php dev list so
they're aware of the problem, etc).

Thank you for your help.

Jerry.
Jul 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: rain | last post by:
Hello, I am having some serious problems executing a command on my redhat linux machine using exec, shell_exec, or any variants thereof. I have a string saved into a variable like: $mystring...
17
by: Piotr Wolski | last post by:
can anyone help me: using exec() function in PHP i can execute linux programms like ls,who and other, however i can not execute C programms and i really don't know why. Please help me, Peter
2
by: Greg Chapman | last post by:
I am at my wit's end trying to get information out of Streamline.net's support dept about my problem. They reply quickly enough, but seem to try and give out the least possible amount of info each...
2
by: Martin Kofahl | last post by:
Hello, I'm slightly confused with the passthru() command. The program I call writes html headers itself. However, passthru() makes apache sending some generated headers first. There's no fault...
2
by: rickcasey | last post by:
I cannnot seem to get exec() or passthru() to execute a perl script; here's the code snippet: if ($debug) { echo "username1 = ".$username1."<br>"; echo "dbname = ".$dbname."<br>"; echo...
3
by: Robert S | last post by:
I would like to display error messages put out by shell commands. For example the following code gives no output and the array $output has no values: <?php exec( 'lss', $output ); var_dump(...
4
by: Tom | last post by:
I have a script which allows a user to upload a file. The script does some filename editing, mimetype checking, etc., and it's then supposed to send the file to a remote server, without any...
1
by: rickcasey | last post by:
I wonder if anyone has experienced something like this, as it seems truly bizarre and is causing me to tear out my hair (what little there is left of it).... The exec() function just suddenly...
7
by: JahMic | last post by:
I'm having a problem with exec on my hosting server. Unfortunately, the hosting support seems to be anything but helpful. The following works fine on my localhost: <?php $MaskData =...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.