Astronet Поиск по астрономическим сайтам English Russian
       
        Точная форма слов   О проекте   Сайты   Справка
Найдено документов: 170367 (117 сайтов) ---- Время поиска: 0.58сек.   

1 | 2 | 3 | 4 | 5 | 6 | След.

Показаны документы, содержащие фрагменты текста из документа
http://www.issp.ac.ru/lpcbc/DANDP/Synthesis.html.

1. Including text in a shell script
Text can be included in the shell script by using a here document, a special form of input redirection. The << symbol is used to indicate that text should be read up to a given mark. For example: #!/bin/sh # this script outputs the given text before it runs cat << EOF This shellscript is currently under development, please report any problems to Danny (danny@cornflake.ed) EOF exec /usr/local/test/bin/test_version . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.7.2.html -- 2.2 Кб -- 17.01.1997
Похожие документы
Еще в разделе: (Показать все результаты (>554) - comet.sai.msu.ru/ )

2. Pulsar Group PmWiki/Page Text Variables
... PmWiki . Summary: PmWiki group header. ... Page Variables | ... Defining page text variables . ... Page text variables are string variables created in the wiki text of a page, and can be automatically made available for inclusion in other pages. ... use a definition list - the normal pmwiki markup for a definition list will create a page text variable . ... This creates a new variable that can be accessed by {$:Name} (becomes: "{$:Name}") in the page. use a simple colon delimiter in normal text . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/people/pulsar/index.html?n=PmWiki.PageTextVariables -- 25.8 Кб -- 01.03.2014
Похожие документы

3. Using mod_rewrite to control access - Apache HTTP Server
... Apache HTTP Server Version 2.4 . ... It describes how you can use mod_rewrite to control access to various resources, and other related techniques. ... This technique relies on the value of the HTTP_REFERER variable, which is optional. ... RewriteCond %{HTTP_REFERER} !^ RewriteCond %{HTTP_REFERER} !www.example.com [NC] RewriteRule \.(gif|jpg|png)$ - [F,NC] . ... RewriteCond ${deflector:%{HTTP_REFERER}} =- RewriteRule ^ %{HTTP_REFERER} [R,L] RewriteCond %{HTTP_REFERER} != ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/en/rewrite/access.html -- 14.9 Кб -- 19.11.2015
Похожие документы

4. Getting Started in Actor Prolog. Hello World.
Actor Prolog is an object-oriented logic language. So, any program written in Actor Prolog consists of classes. ... An example of Actor Prolog program. -- -- (c) 2002, Alexei A. Morozov, IRE RAS. -- ------------------------------------------- project : (( 'Hello' )) class 'Hello' specializing 'Console': [ goal:- writeln ( "Hello World!" This program consists of solely 'Hello' class. ... Thus, the execution of the program starts with the creation of an instance of the 'Hello' class. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/Lab144/start/e_hello.html -- 7.1 Кб -- 24.09.2007
Похожие документы

5. lsst.tcc: include/tcc/telMod.h Source File
lsst.tcc љ 1.2.2-3-g89ecb63 . ... Files . ... include . ... telMod.h . ... 6 љ #include <string> . ... 24 љ explicit TelMod (std::string const &filePath) { . ... 86 љ void loadPath (std::string const &filePath); . ... 112 љ std::vector<std::string> getTermNames () const ; . ... 145 љ std::ostream & operator<< (std::ostream &os, TelMod const &telMod); . ... double getTerm(std::string const &termName) const . ... std::vector< std::string > getTermNames() const . ... TelMod(std::string const &filePath) . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/TCC/html/tel_mod_8h_source.html -- 30.6 Кб -- 14.09.2015
Похожие документы

6. The C Preprocessor
... Preprocessor Compiler Control . ... This directive includes a file into code. ... include <file> or #include ``file'' . ... As another example if running program on MSDOS machine we want to include file msdos.h otherwise a default.h file. ... This is most often used with programs that translate other languages to C. For example, error messages produced by the C compiler can reference the file name and line numbers of the original source files instead of the intermediate C (translated) source files. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 02.10.2012
Похожие документы

7. Making backups with tar
Next: Restoring files with tar Up: Simple backups Previous: Simple backups . A full backup can easily be made with tar љ : # tar -create -file /dev/ftape /usr/src . ... If your backup doesn't fit on one tape, you need to use the -multi-volume ( -M ) option: # tar -cMf /dev/fd0H1440 /usr/src . ... usr/src/ . ... usr/src/linux-1.2.10-includes/ .. ... An incremental backup can be done with tar љ using the -newer ( -N ) option: # tar -create -newer '8 Sep 1995' -file /dev/ftape /usr/src -verbose . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/sag-0.4/node85.html -- 6.2 Кб -- 04.05.1997
Похожие документы

8. http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/libcfitsio/libcfitsio-3.310/README
CFITSIO Interface Library CFITSIO is a library of ANSI C routines for reading and writing FITS format data files. ... The CFITSIO library is built on Unix systems by typing: > ./configure [--prefix=/target/installation/path] > make (or 'make shared') > make install (this step is optional) at the operating system prompt. The configure command customizes the Makefile for the particular system, then the `make' command compiles the source files and builds the library. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/libcfitsio/libcfitsio-3.310/README -- 6.9 Кб -- 30.12.2010
Похожие документы

9. The VII Asian-Pacific Astronomy Olympiad: 3rd announcement
Published in the 2 nd announcement . The VII Asian-Pacific plan to be organised on November 7-15 , 2011 . Excursion to cosmodrome Baikonur proposed on the 4 th or 5 th day of Olympiad. ... Personal data of all proposed team leaders and participants (please, save the data in text format *.txt), . ... E-mails for sending the applications . ... E-mails for sending the personal data . ... Dr. Michael G. Gavrilov, Founding Chairman and Coordinator of the Asian-Pacific Astronomy Olympiad (APAO) . ...
[ Сохраненная копия ]  Ссылки http://www.issp.ac.ru/iao/apao/2011/3a.html -- 13.9 Кб -- 26.08.2011
Похожие документы

10. Apache Tutorial: .htaccess files
... When (not) to use .htaccess files . ... Server side includes example . ... Require .htaccess files (or "distributed configuration files") provide a way to make configuration changes on a per-directory basis. ... Note that it is completely equivalent to put a .htaccess file in a directory /www/htdocs/example containing a directive, and to put that same directive in a Directory section <Directory /www/htdocs/example> in your main server configuration: .htaccess file in /www/htdocs/example : . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/howto/htaccess.html -- 17.4 Кб -- 01.08.2003
Похожие документы

11. Stellarium: StelObjectModule Class Reference
Stellarium 0.12.3 . ... Classes . ... ClassљList . ClassљIndex . ... StelObjectModule Class Reference abstract . Specialization of StelModule which manages a collection of StelObject . ... virtual QList< StelObjectP >љ . searchAround (const Vec3d &v, double limitFov, const StelCore *core) const =0 . ... searchByNameI18n (const QString &nameI18n) const =0 . Find a StelObject by name. ... searchByName (const QString &name) const =0 . ... virtual QStringљ . ... const QString &љ . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classStelObjectModule.html -- 37.0 Кб -- 28.02.2014
Похожие документы

12. Examples of data contained in the JPDOC
Next: Silicate minerals Up: A Database of Optical Previous: Database of Optical Properties . ... If necessary, data have been determined for the different crystallographic axes. ... In the following we give some examples of the data and their possible applications. Table: Summary of data measured in the Jena laboratory, which are currently available from the JPDOC. compound . ... amorph. ... Next: Silicate minerals Up: A Database of Optical Previous: Database of Optical Properties root 2003-03-06 ...
[ Сохраненная копия ]  Ссылки http://www.astro.spbu.ru/DOP/5-OPTC/JPDOC2/node6.html -- 10.1 Кб -- 19.11.2010
Похожие документы

13. Webmail: An Automated Web Publishing System
Next: Study to Install an Information System at the University of the Istanbul Astronomy and Space Sciences Department . ... NOAO 1 , P.O. Box 26732, Tucson, AZ 85726 . A system for publishing frequently updated information to the World Wide Web will be described. Many documents now hosted by the NOAO Web server require timely posting and frequent updates, but need only minor changes in markup or are in a standard format requiring only conversion to HTML. ... NOAO 1 . ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass98/belld1/ -- 11.2 Кб -- 16.07.1999
Похожие документы

14. Springer LINK: Astronomy and Astrophysics - Contents
... 333/2 including HTML versions of articles . ... 332/3 including HTML versions of articles . ... 331/3 including HTML versions of articles . ... 330/3 including HTML versions of articles . ... December 1997 . ... November 1997 . ... Indexed/abstracted in Astronomy and Astrophysics Abstracts, CAS, Current Contents, INIS, Inspec, Physics Abstracts, Physics Briefs, PHYS on STN, Science Citation Index, Technical Information Center/Energinfo, and Zentralblatt f r Mathematik . ... helpdesk@link.springer.de...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/AAcontent/tocs.htm -- 12.3 Кб -- 22.04.1998
Похожие документы

15. http://www.astrosociety.org/BOD/membersheet08.pdf
Astronomical Society of the Pacific Advancing Science Literacy Through Astronomy We Invite You to Join Us T he Astronomical Society of the Pacific increases the understanding and appreciation of astronomy by engaging scientists, educators, enthusiasts and the public to advance science and science literacy. Founded in 1889, the ASP has over a hundred years of experience using the excitement of astronomical discovery to improve science literacy both within the United States and internationally. ...
[ Текст ]  Ссылки http://www.astrosociety.org/BOD/membersheet08.pdf -- 489.6 Кб -- 04.06.2010
Похожие документы

16. Galaxy Group Hickson 44
... Galaxy Group Hickson 44 . ... 19.03.2007 . ... Pictured above is nearby compact group Hickson 44. ... Also known as the NGC 3190 Group, Hickson 44 contains several bright spiral galaxies and one bright elliptical galaxy on the upper left. ... Many galaxies in Hickson 44 and other compact groups are either slowly merging or gravitationally pulling each other apart. ... March 2007 . ... Publications with keywords: galaxies - group of galaxies . Publications with words: galaxies - group of galaxies . ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/1221225 -- 15.4 Кб -- 20.03.2007
Похожие документы

17. pyQC: Python 2.6.2
... new: . ... Python 2.6.2 + most up-to-date modules (December 2009) . ... pyQC script structure . ... The current installation of python and its associated modules on our DFO machines is extremely old (i.e. python 2.4.2 was released in Sept. ... The new python executable lives in: /qcdp/bin/python . ... The first figure shows the execution times for the old python installation, while the second figure shows the execution times based on scripts running the python 2.6.2 installation with the new modules...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/tqs/pyqc/python_2.6.2.html -- 13.7 Кб -- 18.12.2009
Похожие документы

18. SAO RAS home page
... Дни открытых дверей к юбилею САО РАН (12-14 апреля 2016 г.) . Международная конференция "Dark Ages and White Nights (Spectroscopy of the CMB)" (20-24 июня 2016 г.) . ... Международная конференция MULTI-SPIN GALAXIES - 2016 (26-30 сентября 2016 г.) . Международная астрономическая конференция "Физика звезд: от коллапса до коллапса" (3-7 октября 2016 г.) Архив . ... Подробнее.. ... 10.02.16 . ... БТА в реальном времени . ... Цейсс-1000 в реальном времени . ... Последнее обновление: 22/03/2016 ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/ -- 11.4 Кб -- 09.04.2016
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/ -- 11.4 Кб -- 09.04.2016
Похожие документы

19. Funtools FAQ: Programming
... include <stdlib.h> #include <funtools.h> int main(int argc, char **argv) { Fun fun; /* sanity check */ if( argc < 2 ) return 1; /* open file for reading */ if( !(fun=FunOpen(argv[1], "r", NULL)) ){ fprintf(stderr, "ERROR: can't open funtools file: %s\n", argv[1]); return 1; } /* close file */ FunClose(fun); return 0; } . ... pi); } if( ebuf) free(ebuf); } /* close file */ FunClose(fun); return 0; } . ... region); } if( ebuf) free(ebuf); } /* close file */ FunClose(fun); return 0; } . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/funtools/faq/faq2.html -- 11.3 Кб -- 02.10.2012
Похожие документы

20. Radioastrophysical department ISTP RAS SB
RADIOASTROPHYSICAL DEPARTMENT  INSTITUTE OF SOLAR-TERRESTRIAL PHYSICS RAS SB . ... Radioastrophysical Department , Institute of Solar-Terrestrial Physics, Siberian Division, Russian Academy of Science. ... Head of Laboratory dr. Gubin A.V. LABORATORY of INFORMATION SUPPLY and METHODOLOGY of RESEARCH . ... Head of Observatory Kitsanov S.V. SIBERIAN SOLAR RADIO TELESCOPE . Siberian solar radio telescope data at 5.7 GHz in I SOHO EIT 171 SOHO EIT 195 SOHO EIT 304 MDI Continuum MDI Magnetogram . ...
[ Сохраненная копия ]  Ссылки http://ssrt.iszf.irk.ru/ -- 20.8 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>15) - ssrt.iszf.irk.ru/ )

1 | 2 | 3 | 4 | 5 | 6 | След.


Астронет | Научная сеть | ГАИШ МГУ | Поиск по МГУ | О проекте | Авторам

Комментарии, вопросы? Пишите: info@astronet.ru или сюда

Rambler's Top100 RFBR Яндекс цитирования