NLDCD(8) BSD System Manager's Manual NLDCD(8)NAME
nlcd -- Network Link Conditioner daemon
SYNOPSIS
nlcd
DESCRIPTION
nlcd provides services for the Network Link Conditioner.
There are no configuration options to the nlcd daemon. One should not run nlcd manually.
Mac OS X December 2, 2011 Mac OS X
Check Out this Related Man Page
xgridctl(8) BSD System Manager's Manual xgridctl(8)NAME
xgridctl -- Xgrid Daemon Control Interface
SYNOPSIS
xgridctl [target] action
OPTIONS
The optional target is one of the following:
controller perform the action for the xgricontrollerd daemon
agent perform the action for the xgridagentd daemon
The action is one of the following:
status print status for the chosen daemon, or print status for all daemons if no target is specified
start enable and start the chosen daemon, or start all enabled daemons if no target is specified
stop disable and stop the chosen daemon, or stop all daemons if no target is specified
restart stop and then enable and start the chosen daemon, or stop all daemons and then start all enabled daemons if no target is speci-
fied
RETURN VALUES
0 completed succesfully
1 an error occurred
FILES
/usr/libexec/xgrid/xgridagentd
agent daemon
/usr/libexec/xgrid/xgridcontrollerd
controller daemon
/System/Library/LaunchDaemons/com.apple.xgridagentd.plist
agent launchd control file
/System/Library/LaunchDaemons/com.apple.xgridcontrollerd.plist
controller launchd control file
EXAMPLES
Print status of agent and controller:
$ xgridctl status
Start the controller and set it to run at startup:
$ xgridctl controller start
Stop the agent and set it to not run at startup:
$ xgridctl agent stop
SEE ALSO xgrid(1)launchd(8)HISTORY
This program was first introduced in Mac OS X 10.4 "Tiger". It was inspired by apachectl(8). The "on" and "off" actions were deprecated in
Mac OS X 10.5 "Leopard".
BUGS
Bug reports can be sent to bugreport.apple.com
Mac OS X April 2, 2009 Mac OS X
The following script is used to loop through files in the /tmp directory and transfer those files onto another server.
However, some of the files do not transfer. It is very random when the transferring is done (i.e. one of the files won't transfer then next time, that one will transfer and... (1 Reply)
Hi:
I have writed a script that read a HTML file and convert this in a multipart mime fail to send in a mail.
But the result isn't interpreted lika a mime file!!
Somebody can see the error???
---------------------------
#! /bin/bash
SB=$1
IF=$2
OF=$3
rm -f $OF.b64
... (7 Replies)
im trying to use this shellscript in one command line, but isnt working.
shellscript:
SERVER=ftp.site.com
USER=Foo
PASSW=3122
ftp -v -n $SERVER <<END_OF_SESSION
user $USER $PASSW
$FILETYPE
lcd /home/foo/mywebsite
mput *
mput *.*
bye
END_OF_SESSION
Im trying a lot of... (7 Replies)