Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

drracket(1) [debian man page]

DRRACKET(1)						      General Commands Manual						       DRRACKET(1)

NAME
drracket - the Racket programming environment SYNOPSIS
drracket [ Xoption ... ] [ file ... ] DESCRIPTION
DrRacket is the Racket programming environment. The drracket program treats non-switch command-line arguments as files to open. X OPTIONS
When running in X11, DrRacket accepts the following standard Xoptions: -display disp, -geometry geom, -bg color, -background color, -fg color, -foreground color, -fn font, -font font, -iconic, -name name, -rv, -reverse, +rv, -selectionTimeout time, -synchronous, -title name, -xnllanguage lang, -xrm file. In addition, the option -singleInstance is treated like an X option (it must appear before all other options), and it runs DrRacket in sin- gle-instance mode. In single-instance mode, when an existing instance is running with the same host and executable name, all non-option arguments are treated as file names and sent to the existing instance. MORE INFORMATION
For further information, run raco docs to open installed documentation in your web browser. Alternately, consult the on-line documentation and other information available at http://racket-lang.org/ AUTHOR
DrRacket was implemented by PLT. SEE ALSO
raco(1), racket(1), gracket(1) 4th Berkeley Distribution May 2010 DRRACKET(1)

Check Out this Related Man Page

GRACKET(1)						      General Commands Manual							GRACKET(1)

NAME
gracket - the GUI Racket implementation SYNOPSIS
gracket [ option ... ] [ argument ... ] DESCRIPTION
GRacket is the GUI-application variant of racket. Run gracket --help for a list of command-line options and other start-up information. Supplying no arguments to gracket is the same as supplying the -i option for interactive evaluation. Supplying non-switch, non-configuration arguments to gracket is the same as putting -u before the arguments to run the first one as a mod- ule-based script. MORE INFORMATION
For further information, run raco docs to open installed documentation in your web browser. Alternately, consult the on-line documentation and other information available at http://racket-lang.org/ AUTHOR
GRacket was implemented by Matthew Flatt (mflatt@racket-lang.org), Robert Bruce Findler (robby@racket-lang.org), John Clements (clements@racket-lang.org), and PLT. SEE ALSO
raco(1), drracket(1), racket(1) 4th Berkeley Distribution May 2010 GRACKET(1)
Man Page

11 More Discussions You Might Find Interesting

1. Programming

Do you know good site?

Do you know any good web site about system programming? I've been looking for sites about C-programming in UNIX environment.. and emulating UNIX command by C.. but there is little about that.. If you know some good abnout that,, please let me know.. Thanks for helping... (1 Reply)
Discussion started by: sangjinn
1 Replies

2. Programming

help required

hi i am new to c programming and found this on the net could someone tell me what it actually does, many thanks in advance cheers #include <fcntl.h> main() { int fd; fd = open("in1", O_RDONLY); printf("%d\n", fd); } and this too please #include <fcntl.h> main() { int... (1 Reply)
Discussion started by: ruffenator
1 Replies

3. Programming

Getting File Name

Hi! I'm developing an application program by C++ language in the UNIX environment and I would know the name of last file written at a particular path and with a particular prefix. For instance, I need someting like output of following UNIX pipelined command: ls -t... (4 Replies)
Discussion started by: pciatto
4 Replies

4. Programming

What does open() do anyways?

I know its kind of silly to think about it, but what does this function do anyways? I know it is used to open a given file with a variety of options but what is the best place to find out what is happening internally? I think it updates the file descriptor table and provides a lock file but does it... (3 Replies)
Discussion started by: Legend986
3 Replies

5. Programming

iropt

dear all does any one know what is iropt command???????? (1 Reply)
Discussion started by: murad.jaber
1 Replies

6. Programming

Doubt in C programming (copying data from one file to another)

Hello, i'm new to the forum and so am i to C programming. Recently i've gotten a task to create a program that will read an existing .bin file and copy the data to a non existing (so i have to create it) .txt file (some type of conversion) Now, i now how to put the arguments, opening and... (5 Replies)
Discussion started by: Lyric
5 Replies

7. Programming

Where do i start with Web Development?

Im completely new to programming and dont really know much about it. I want to start learning about Web Development but i have no idea where to start. Any suggestions? (3 Replies)
Discussion started by: Anna Hussie
3 Replies

8. Programming

noob error quesion

Hey, I a newbie in unix programming. I type the following command if ((configfd = open(CONFIGFILE, O_CREAT | O_WRONLY)) == -1) and the result I get from open is -1, which means error. how can I figure out the cause of the error ? (2 Replies)
Discussion started by: mellowcandle
2 Replies

9. Programming

Program received signal: “EXC_BAD_ACCESS”?

I am making a command line program in C using XCode. When running the program, it initially does what it is supposed to do (asks me for a file path). However, when I type in a valid and existing file path, it gives me the following error: Program received signal: “EXC_BAD_ACCESS”.... (6 Replies)
Discussion started by: mdonova33
6 Replies

10. Programming

Daemon process

I wish to make a process run in the background, but only one instance of it, and not many, so when the program is loaded, it has to check whether another instance of the same program is running and if so to exit. How do I do this ? (4 Replies)
Discussion started by: sundaresh
4 Replies

11. Programming

Curious About Offbeat "#" Usage in C . . .

Greetings! Being incredibly rusty in the little C which I ever knew, and, not knowing where else to turn but the best programming community on the web ( :) ), I submit the following snippet for a quick question:#if PERL_VERSION > 7 if (DEBUG_D_TEST) { SV* sva; ... (3 Replies)
Discussion started by: LinQ
3 Replies