well through my 6 months education i know some unix os but i can't find one for my p3 via board can any one tell me where to find such please replay as email or private msg and thanks (3 Replies)
Hi All,
I would like to write a script which sends an email to clients.
mailx -s "TEST" $EMAIL_RECIPIENTS < FILE ...will send an email to EMAIL_RECIPIENTS with TEST as the subject and FILE as the body.
Now I have a another CONTROL_FILE which is constant all the times (FILE in the above... (1 Reply)
I am using rsync for my backing up my files, from one box to other box,
While doing I am getting following error.
arb821/Server/logs/rpcMetrics/
arb821/Server/logs/AribaOrderTransmitterLog.txt
write failed on arb821/Server/logs/AribaOrderTransmitterLog.txt : Error 0
rsync error: error in... (2 Replies)
Can you help me with my code?
I wrote a Java program and ran it in gdb, the debugger said that :
(gdb) run handhelditems 1 1000
Starting program: /home/wqq/crawl/handhelditems/crawl_what_i_want handhelditems 1 1000
Program received signal SIGPWR, Power fail/restart. (2 Replies)
I'm not sure where to post this but I'm having some trouble with the directories in CP/M... I'm sorry about the length but I'm totally confused... I've seen that the directory entry in CP/M contains the following:
1 byte User Code
8 bytes Filename
3 bytes File extension
1 byte Extension
2... (3 Replies)
Hi all,
I have few question related to Unix environment and commands :
1. what is .chrc file contain and if it is not present then what happens.
2. what is .login file contain,in which dir it is present and what all other uses are their for this file
3. how and who calls .profile when you... (2 Replies)
Ok, I gotta ask this question, I have just begun fundamentals of UNIX in college and have learned or heard that Mac's OS-X is a linux based os! Does this mean that unix shell commands work in OS-X? I have no experience with os-x yet. I know it's a stupid question but I gotta know! (10 Replies)
Hi,
I need to know wat does if ! >$tmp_out in the below script mean:
tmp_out=$SCRATCH_DIR/file_cat.$$.tmp
if
! > $tmp_out
then
print "Could not initialize temorary file" >&2
my_exit_code=21
break
fi
---------- Post updated at 04:28 AM ----------... (4 Replies)
I have one application server, which is Solaris non global zone (dsapid02-dt3d02 - 10.63.76.96) and a database server, which is Linux (db1-serv26 - 10.63.36.117 & 10.63.36.118).
Whenever database admin is starting listener, it starts filling listener log file. Within minutes, it will make file in... (6 Replies)
Discussion started by: solaris_1977
6 Replies
LEARN ABOUT PHP
zip_entry_open
ZIP_ENTRY_OPEN(3) 1 ZIP_ENTRY_OPEN(3)zip_entry_open - Open a directory entry for readingSYNOPSIS
bool zip_entry_open (resource $zip, resource $zip_entry, [string $mode])
DESCRIPTION
Opens a directory entry in a zip file for reading.
PARAMETERS
o $zip
- A valid resource handle returned by zip_open(3).
o $zip_entry
- A directory entry returned by zip_read(3).
o $mode
- Any of the modes specified in the documentation of fopen(3).
Note
Currently, $mode is ignored and is always "rb". This is due to the fact that zip support in PHP is read only access.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
Note
Unlike fopen(3) and other similar functions, the return value of zip_entry_open(3) only indicates the result of the operation and
is not needed for reading or closing the directory entry.
SEE ALSO zip_entry_close(3), zip_entry_read(3).
PHP Documentation Group ZIP_ENTRY_OPEN(3)