02-04-2002
htpsswd program
Where can I download the .htpsswd program for my Sun system running Solaris 8.0?
10 More Discussions You Might Find Interesting
1. Programming
Read the title: how do i do it? (4 Replies)
Discussion started by: Gekko
4 Replies
2. Programming
Hi,
Program A: uses pipe()
I am able to read the stdout of PROGAM B (stdout got through system() command) into PROGRAM A using:
* child
-> dup2(fd, STDOUT_FILENO);
-> execl("/path/PROGRAM B", "PROGRAM B", NULL);
* parent
-> char line;
-> read(fd, line, 100);
Question:
---------... (1 Reply)
Discussion started by: vvaidyan
1 Replies
3. UNIX for Dummies Questions & Answers
Hi,
Program A: uses pipe()
I am able to read the stdout of PROGAM B (stdout got through system() command) into PROGRAM A using:
* child
-> dup2(fd, STDOUT_FILENO);
-> execl("/path/PROGRAM B", "PROGRAM B", NULL);
* parent
-> char line;
-> read(fd, line, 100);
Question:
---------... (3 Replies)
Discussion started by: vvaidyan
3 Replies
4. Programming
Hi,
I wanted to know if i can write a program using switches and signals, etc to trace execution of other unix program which calls c program internally.
If yes how? If not with signals and switches then are there any other methods apart from debugging with gdb/dbx. (3 Replies)
Discussion started by: jiten_hegde
3 Replies
5. UNIX for Dummies Questions & Answers
Can anyone tell me how to.....
program to create multiple threads (one master thread and rest worker threads) and using the threads write into and read from shared memory
Restrictions:
Only one thread should be able to read at any instant of time into shared memory region.
Only one... (2 Replies)
Discussion started by: kumars
2 Replies
6. UNIX for Dummies Questions & Answers
Hi,
i want to write a script that executes a program (exec?) .
this program then requires a filename as input.
how do i give it this input in the script so the program will be complete run and close by the script.
e.g.
exec prog.exe
program then asks for filename
"enter filename:"... (1 Reply)
Discussion started by: tuathan
1 Replies
7. Programming
I wrote a simple program that generates a random word 10,000,000 times.
I wrote it in python, then in C++ and compared the two completion times. The python script was faster! Is that normal? Why would the python script be faster? I was under the impression that C++ was faster. What are some of... (2 Replies)
Discussion started by: cbreiny
2 Replies
8. Programming
Hi All,
Probably this is a repeated question. My knowledge in this is limited and i got confused on all those materials i got in google search.
We use #include <> to include a predefined library like stdio.h
i saw somewhere that #include "" includes a man made module(another C program). IS... (2 Replies)
Discussion started by: jisha
2 Replies
9. Homework & Coursework Questions
Long story short: I'm working inside of a Unix SSH under a bash shell. I have to code a C program that generates a random number. Then I have to call the compiled C program with a Perl program to run the C program 20 times and put all the generated random #s into a text file, then print that text... (1 Reply)
Discussion started by: jdkirby
1 Replies
10. Shell Programming and Scripting
I created a program, so a kid can practice there math on it. It dispenses varies math problems and the kid must input an answer. I also want it to grade the work they have done, but I can't find the best place for it to print out the grade.
I have:
if ( $response =~ m/^/ ) {
$user_wants_to_quit... (1 Reply)
Discussion started by: germany1517
1 Replies
dll(1) brickOS Utility dll(1)
NAME
dll - A user-program downloader for the RCX.
SYNOPSIS
dll [options] command | {file}.lx
DESCRIPTION
This manual page documents the dll user-program download command.
dll is a program which is used to download user programs written for brickOS to the RCX.
OPTIONS
This program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). The options supported by dll
are:
(run with no parms)
Show built-in help (summary of options)
-e, --execute
Execute program after download.
-i{0|1}, --irmode={0|1}
Set IR mode (on RCX) to near(0) or far(1)
-p{1-8}, --program={1-8}
Download program to program-slot-number {1-8}
NOTE: LegOS supports 8 program slots where the Mindstorms original firmware only supports 5.
-r{hostaddress}, --rcxaddr={hostaddress}
Send to RCX LNP at host address {0-15}. Default is 0. See also --node={hostaddress}
-s{srcport}, --srcport={srcport}
Send to RCX LNP source port {0-15}
-t{ttydevice} --tty={ttydevice}
Specify serial tty device where IR tower is connected.
NOTE: The environment variable RCXTTY may be used in place of -tty
-v, --verbose
Enable verbose output
COMMANDS
-d{1-8}, --delete={1-8}
Delete program from program-slot-number {1-8}
-n{hostaddress}, --node={hostaddress}
Set RCX LNP host address to {0-15}
ENVIRONMENT VARIABLES
dll will respond to the environment variable RCXTTY. This should be set to the serial device to which the IR tower is connected. Use of
RCXTTY is equivalent the using the -tty command-line option.
EXAMPLES
dll is a simple command to use. The following examples show most of the uses.
Ex1: download demo/robots.lx to the RCX as program 0.
$ dll -tty=/dev/ttyS0 demo/robots.lx
$
NOTE: there is no response from dll(1) on a successful download. You can, however watch the RCX display during the download and see activ-
ity.
Ex2: download the demo/linetrack.lx into program-slot 7. (note we are first setting RCXTTY so we don't have to keep specifying the tty
device each download).
$ export RCXTTY=/dev/ttyS1
$ dll -p7 demo/linetrack.lx
$
Ex3: download demo/rover.lx but we are leaving the RCX powered off (assume RCXTTY is already set).
$ dll -p2 demo/rover.lx
error deleting program
$
NOTE: dll first deletes the existing program from the specified program slot and then downloads the new one. This error indicates that the
first thing dll tried to do did not succeed.
We'll leave the experiment of running dll with --verbose set as an exercise for you our reader... (This is actually a combination of
progress infromation and debug ouput.)
ERROR MESSAGES
Unfortunately, there is basically only one dll error message, and it applies to most possible errors, including a disconnected IR tower, an
RCX that is turned off, an RCX that doesn't have brickOS, and an RCX that has brickOS and is already running a program. So, check all
those things when dll fails.
SEE ALSO
firmdl3(1)
AUTHOR
dll was written by: Markus L. Noga.
Addiitonal Contributor(s): everyone discussing LNP at LUGNET
This manual page was written by Stephen M Moraco <stephen@debian.org>, for the Debian GNU/Linux system (but may be used by others).
brickOS May 12, 2002 dll(1)