Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

groovyc(1) [debian man page]

groovyc(1)						      General Commands Manual							groovyc(1)

NAME
groovyc - compiler for groovy source files DESCRIPTION
usage: groovyc [options] <source-files> options: --classpath <path> Specify where to find the class files. -d <arg> Specify where to place generated class files. -e,--exception Print stack trace on error. --encoding <encoding> Specify the encoding of the user class files. -F <flag> -h,--help Print a synopsis of standard options. -j,--jointCompilation Attach javac compiler to compile .java files. -J <property=value> --sourcepath <path> Specify where to find the source files. --temp <temp> -v,--version Print the version. options: --classpath <path> Specify where to find the class files. -d <arg> Specify where to place generated class files. -e,--exception Print stack trace on error. --encoding <encoding> Specify the encoding of the user class files. -F <flag> -h,--help Print a synopsis of standard options. -j,--jointCompilation Attach javac compiler to compile .java files. -J <property=value> --sourcepath <path> Specify where to find the source files. --temp <temp> -v,--version Print the version. SEE ALSO
groovy(1) AUTHOR
This manual page was generated using help2man and edited by Varun Hiremath <varun@debian.org>, for the Debian project (but may be used by others). December 2007 groovyc(1)

Check Out this Related Man Page

scalap(1)							   USER COMMANDS							 scalap(1)

NAME
scalap - Scala class file decoder for the Scala 2 language SYNOPSIS
scalap [ <options> ] <class name> PARAMETERS
<options> Command line options. See OPTIONS below. <class name> Full-qualified name of a class to be decoded (such as hello.HelloWorld). DESCRIPTION
The scalap tool reads a class file generated by theScala compiler, and displays object and class definitions. By default, scalap looks for the given class file in the current directory. You can specify a separate classpath with -classpath (see OPTIONS, below). OPTIONS
The decoder has a set of standard options that are supported on the current development environment and will be supported in future releases. Standard Options -help Display this usage message. -private Print private definitions. -verbose Print out additional information. -version Print product version and exit. -cp | -classpath Specify where to find user class files. EXAMPLES
Display definitions for a generated class file scalap hello.HelloWorld EXIT STATUS
scalap returns a zero exist status if it succeeds to process the specified input files. Non zero is returned in case of failure. AUTHOR
Written by Ilya Sergey. REPORTING BUGS
Report bugs to http://lampsvn.epfl.ch/trac/scala. COPYRIGHT
This is open-source software, available to you under a BSD-like license. See accomponying "copyright" or "LICENSE" file for copying condi- tions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. SEE ALSO
fsc(1), sbaz(1), scala(1), scalac(1), scaladoc(1) version 0.2 June 8, 2006 scalap(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Loading JDK1.3 on Sparc2.6

I have followed instructions to get the jdk for sparc, 1.3 loaded on this sparc workstation machine. I used a tar file and everything seemed to go fine. The usr/j2se directory was created with all the subdirectories and java files. However, attempting to run Java commands fails with a file not... (18 Replies)
Discussion started by: jamestthomas
18 Replies

2. Shell Programming and Scripting

How to find our working compiler

Hi, I am using Turbo Linux and needs to install Samba on it. But it said that could not find gcc. My question is how to find out which compiler is working on my system. I tried echo $CC but it gave me nothing. How can I set environmental compiler to c. Thanks in advance. (8 Replies)
Discussion started by: s_aamir
8 Replies

3. Shell Programming and Scripting

Help required for cat command

Hi, I had written the following script to find the list of files with *.ksh in a directory. and store it in a temp file. I want to loop through the file temp and list the contents. I had used cat temp. But its giving Cat and temp as the output. Do help me out. Thanks find .... (7 Replies)
Discussion started by: mahalakshmi
7 Replies

4. UNIX for Dummies Questions & Answers

setEnv.sh is found in which directory(path)

Hi, I am new to Unix.I want to set the path and classpath setting for JDK1.4,Weblogic 9.2 and Oracle 9? So i need to set those settings in setEnv.sh file. But i am unable to find that file in my unix environment? Pls. do tell me where this setEnv.sh is stored? In which directory or path?... (8 Replies)
Discussion started by: sachin.tendulka
8 Replies

5. Shell Programming and Scripting

ls help

Hi, I have some files: temp_1 temp_11 temp_123 temp_2 temp_22 temp_234 temp_3 temp_33 temp_345 and so on I want a listing to be in following order.... temp_1 temp_2 (7 Replies)
Discussion started by: Shivdatta
7 Replies

6. UNIX for Advanced & Expert Users

getting error while copying files

I am trying copy all files ,i was getting below error .Please any idea #find . -name "*bat" -exec cp -p {} /devt/jobs find: incomplete statement Thanks, Akil (9 Replies)
Discussion started by: akil
9 Replies

7. Shell Programming and Scripting

shell script to find and replace string in multiple files

I used the following script cd pathname for y in `ls *`; do sed "s/ABCD/DCBA/g" $y > temp; mv temp $y; done and it worked fine for finding and replacing strings with names etc. in all files of the given path. I'm trying to replace a string which consists of path (location of file) ... (11 Replies)
Discussion started by: pharos467
11 Replies

8. UNIX for Dummies Questions & Answers

Security issue and temp files

Hello, One of the senior network admins at work told me that I should not hard code temp files into my scripts. Rather I should use the mktemp commands in the script to create them on the fly. His argument was that if a malicious user knew the name of my temp files in the script they could... (6 Replies)
Discussion started by: mojoman
6 Replies

9. Shell Programming and Scripting

Any trick to speed up script?

Hi Guys, I have a script that I am using to convert some text files to xls files. I create multiple temp. files in the process of conversion. Other than reducing the temp. files, are there any general tricks to help speed up the script? I am running it in the bash shell. Thanks. (6 Replies)
Discussion started by: npatwardhan
6 Replies

10. Homework & Coursework Questions

ls in specific columns

Hello, i need to get the ls output in 2 columns.1st column the directories and 2nd the files... Also each column must be sorted by time... For example if the >>ls command gives me this : /dir2 /dir /dir1 /dir3 file1 file2 I need to take this : /dir file1 /dir1 ... (15 Replies)
Discussion started by: giampoul
15 Replies

11. Shell Programming and Scripting

how to find files and replace them in a directory in Shell scripting

I have a directory /java/unix/data In data directory i have so many files from which i want to find some files who look alike below.(there are number of such below such files as well different files too in the data directory) -68395#svg.xml -56789#ghi.xml -67894#gjk.org -56734#gil.txt I... (6 Replies)
Discussion started by: pratima.kumari
6 Replies

12. Shell Programming and Scripting

sed substitution or awk, need to direct change the file

I want change the file when the line contains $(AA) but NOT contains $(BB), then change $(AA) to $(AA) $(BB) eg: $(AA) something $(AA) $(BB) something (7 Replies)
Discussion started by: yanglei_fage
7 Replies

13. Shell Programming and Scripting

Multiple attachments using mutt

I am trying to attach multiple files using mutt command, and all file names to be attached are taken from a flat file. and mutt command is called from a bash script when : 1. Script execution is completed. 2. Script execution is interrupted for some reason. ... (8 Replies)
Discussion started by: Shaishav Shah
8 Replies

14. UNIX for Dummies Questions & Answers

Number of files with *.something

I am trying to find the number of files that are of sas files. so I can do find . -name '*.sas' but I want to know how many. So what is the command to find so. (6 Replies)
Discussion started by: yatici
6 Replies

15. Shell Programming and Scripting

Grouping files on pattern

I have this Requirement where i have to group the files, I have a folder say "temp" where many files resides...files are like this; 010020001_S-ABC-Sort-DEFAW_YYYYMMDD_HHMMSS.txt 010020004_S-PQR-Sort-DRTON_YYYYMMDD_HHMMSS.txt 010020009_S-JKL-Sort_MNOLO_YYYYMMDD_HHMMSS.txt... (8 Replies)
Discussion started by: gnnsprapa
8 Replies