Files into IDL directories


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Files into IDL directories
# 1  
Old 07-27-2009
Files into IDL directories

Ok so ive downloaded two files, and i need to save them into a directory that can be read in IDL.

Can someone please remind me how to do this, like post the code that i need please?

Many thanks
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Archiving and moving files into directories, creating directories, etc.

how can i move "dataName".sql.gz into a folder called 'database' and then move "$fileName".tar.gz * .htaccess into a folder called 'www' with the entire gzipped file being "$fileName".tar.gz? Is this doable or overly complex. so mydemo--2015-03-23-1500.tar.gz > database -... (5 Replies)
Discussion started by: wyclef
5 Replies

2. Shell Programming and Scripting

Rename the files in all the directories and sub-directories

Hi all, I have more than 12000 files in 46 different directories and each directory has 2 sub-directories named “dat” or “gridded”. Dat sub-directories have files with extension “jpg.dat” and gridded sub-directories have files with extension “.jpg”. I need to... (1 Reply)
Discussion started by: AshwaniSharma09
1 Replies

3. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

4. Shell Programming and Scripting

How to store files/directories in different directories!!

Hi legends, I am writing a script, in that my requirement is, if all the fill types stored in one directory from that we need to separate different different directories based on the file types. for example in a directory(anish). 5 different types files 1- directory 2- .txt files 2- .sh... (1 Reply)
Discussion started by: anishkumarv
1 Replies

5. UNIX for Dummies Questions & Answers

List directories and sub directories recursively excluding files

Hi, Please help me, how to get all the direcotries, its sub directories and its sub directories recursively, need to exclude all the files in the process. I wanted to disply using a unix command all the directories recursively excluding files. I tried 'ls -FR' but that display files as... (3 Replies)
Discussion started by: pointers
3 Replies

6. Programming

spectra flux-calibration using IDL

Hi, I am searching the web for documentations with tutorials for spectra flux calibration using IDL, does anyone know anything that can help me? Please help :D ---------- Post updated 07-11-09 at 05:38 AM ---------- Previous update was 07-10-09 at 10:46 AM ---------- Does the question make... (0 Replies)
Discussion started by: cosmologist
0 Replies

7. UNIX for Dummies Questions & Answers

WHERE statement similar to IDL

Is there a Unix command similar to the WHERE command in IDL. Such a command would return all location numbers of an array where the value at those locations satisfy specified conditions. For example, if I have a random vector vector=(3 5 6 9) how can I find the location numbers in ${vector}... (6 Replies)
Discussion started by: msb65
6 Replies
Login or Register to Ask a Question
omniidl(1)						      General Commands Manual							omniidl(1)

NAME
omniidl - omniORB idl compiler SYNOPSIS
omniidl [options] -b<back-end> [back-end options] file DESCRIPTION
omniidl is the omniORB IDL compiler front end. If a back-end is not specified, it checks the input IDL file for validity, and produces no output. Usually, a language mapping back-end is specified, so stubs and skeletons in the target language are produced. The input files are processed by the C preprocessor before they are parsed by the compiler. COMMON OPTIONS
-b<backend> Run the specified back-end (e.g., -bcxx = C++, -bpython = Python) -D<name>=<value> Define <name> for the C preprocessor. -U<name> Undefine <name> for the C preprocessor. -I<dir> Include <dir> in the C preprocessor search path. -E Only run the C preprocessor, sending its output to stdout. -Y<cmd> Use <cmd> as the preprocessor instead of the default. -N Do not run the C preprocessor. -Wp<arg> Send <arg> to the C preprocessor. -Wb<arg> Send <arg> to the back-end. -nf Do not warn about unresolved forward declarations. -k Keep comments after declarations, to be used by some back-ends. -K Keep comments before declarations, to be used by some back-ends. -C<dir> Change directory to <dir> before writing output files. -d Dump the parsed IDL then exit, without running a back-end. -p<dir> Use <dir> as a path to find omniidl back-ends. -V Print version information then exit. -u Print usage information. -v Verbose: trace compilation stages. C++ BACK-END Choose the C++ back-end with -bcxx. The C++ back-end is only available when you have omniORB for C++ installed. The C++ back-end produces two output files: a header and a stub/skeleton file. By default they are named by appending suffixes .hh and SK.cc to the base name of the input IDL file. If the -Wba option is specified, then a third file is generated (with default suffix DynSK.cc ), containing code for TypeCode and Any. C++ BACK-END OPTIONS -Wbh=<suffix> Use <suffix> instead of .hh -Wbs=<suffix> Use <suffix> instead of SK.cc -Wbd=<suffix> Use <suffix> instead of DynSK.cc. If the same suffix is specified for -Wbs and -Wbd then a single skeleton file containing all the definitions is output. -Wba Generate definitions for TypeCode and Any. -Wbinline Output stubs for #included IDL files in line with the main file. -Wbtp Generate tie implementation skeletons. -Wbtf Generate flattened tie implementation skeletons. -Wbsplice-modules Splice together multiply-opened modules into one. -Wbexample Generate example implementation code. -WbBOA Generate BOA compatible skeletons. -Wbkeep_inc_path Preserve IDL #include paths in generated #include directives. -Wbuse_quotes Use quotes in #include directives (e.g. "foo" rather than <foo>). PYTHON BACK-END Choose the Python back-end with -bpython. The Python back-end produces Python packages according to the standard IDL to Python mapping, to be used with omniORBpy. The Python back-end is only available when you have omniORBpy installed. The Python back-end generates Python package directories named after the modules declared in IDL, as required by the IDL to Python mapping. It also creates separate stub files that are imported by the packages. PYTHON BACK-END OPTIONS -Wbinline Output stubs for #included IDL files in line with the main file. -Wbglobal=<name> Use <name> as the name for the global IDL scope (default _GlobalIDL). -Wbpackage=<name> Put both Python modules and stub files in package <name>. -Wbmodules=<name> Put Python modules in package <name> -Wbstubs=<name> Put stub files in package <name> SEE ALSO
See the omniORB or omniORBpy manual for full details of omniidl. AUTHOR
Duncan Grisby AT&;T Laboratories, Cambridge 2001 omniidl(1)