Sponsored Content
Full Discussion: command syntax
Top Forums UNIX for Dummies Questions & Answers command syntax Post 12927 by Myrkul on Wednesday 9th of January 2002 09:12:10 AM
Old 01-09-2002
Hi,

Why you don't try man mount and man at ?

there should you find the information you need

Cheers,

Myrkul
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Syntax for tar command

I am trying to extract a file using tar. I cd'ed to the directory I wanted to start in. I had the tar file in the same directory. I executed tar xvf filename . It appeared that it was extracting into the directory the tar file was created from instead of into the directory I was in. How do I... (1 Reply)
Discussion started by: baunocj
1 Replies

2. UNIX for Dummies Questions & Answers

Command syntax

Here's my situation. I am trying to move all files from one directory to another. I have the following requirements: 1) Move all files in /myfiles/wip matching pattern "*.tif" to /work/in that are at least 10 minutes old (or older). 2) When the files are moved, they need to be moved into... (2 Replies)
Discussion started by: dsimpg1
2 Replies

3. Shell Programming and Scripting

until command syntax error

Hi there. I spent too much time away from Unix, now I can't remember how to issue a simple until command in ksh :mad: could you tell me what is wrong with the following code sample: export v = "1" until do echo 'executing repeat_until' v = `expr $v + 1` done I've... (3 Replies)
Discussion started by: 435 Gavea
3 Replies

4. UNIX for Dummies Questions & Answers

bind command syntax

Can anyone tell me what the syntax is for the bind command in bash? I'm using OS X and the book i have ias written in 2005 ('Learning the bash shell') I'm guessing it was for an earlier version. It says something about single and double quotes, but I'm not sure exactly in what order they're... (2 Replies)
Discussion started by: Straitsfan
2 Replies

5. Shell Programming and Scripting

awk command syntax

I want the output to show 2 lines following this line. How do I amend my awk command. Please guide. Thanks (3 Replies)
Discussion started by: Tirmazi
3 Replies

6. UNIX for Dummies Questions & Answers

Syntax for own UNIX command

hi All, how can i make my own commamnds for unix shell scripts. lets xmple.. 1-i want to use "down arrow key" for previous runned unix commands. then how to acheive it. 2-Generally TAB --- complete filename or command up to the point of uniqueness ..but here its not working .. I m new to... (1 Reply)
Discussion started by: pradeepcarya
1 Replies

7. UNIX for Dummies Questions & Answers

to take backup what is the command tell syntax

to take backup what is the command tell syntax (1 Reply)
Discussion started by: sunilamarnadh
1 Replies

8. HP-UX

ps command syntax

I use hp HP-UX. I want to get vsz of the process . What is the syntax ... /run>ps -help ps: illegal option -- h ps: option requires an argument -- p usage: ps (3 Replies)
Discussion started by: chuikingman
3 Replies

9. Shell Programming and Scripting

Alias command syntax

Hi all, I want to add a shortcut "xmll" to my .cshrc file. By using "xmll" I want the following command to be executed: find . -type f -name 'T*.xml' > xml_list.txt BUT: alias xmll 'find . -type f -name 'T*.xml' > xml_list.txt' doesn't work. What is the correct syntax? Thank... (7 Replies)
Discussion started by: friend
7 Replies

10. UNIX for Advanced & Expert Users

Syntax when using the 'exec' command

Hey gang, I'm confused about the 'exec' command. I get the basics. I can redirect stdout and stderr to one log file with: exec >> $logFile 2>&1 However, that code requires admin rights. In other scripts, when faced with this, I'll call 'sudo' and then pass a hashed password like this: ... (8 Replies)
Discussion started by: hungryd
8 Replies
doctoc_lang_syntax(n)						Documentation tools					     doctoc_lang_syntax(n)

__________________________________________________________________________________________________________________________________________________

NAME
doctoc_lang_syntax - doctoc language syntax DESCRIPTION
This document contains the formal specification of the syntax of the doctoc markup language, version 1.1 in Backus-Naur-Form. This document is intended to be a reference, complementing the doctoc language command reference. A beginner should read the much more informally writ- ten doctoc language introduction first before trying to understand either this document or the command reference. FUNDAMENTALS
In the broadest terms possible the doctoc markup language is like SGML and similar languages. A document written in this language consists primarily of markup commands, with text embedded into it at some places. Each markup command is a just Tcl command surrounded by a matching pair of [ and ]. Which commands are available, and their arguments, i.e. syntax is specified in the doctoc language command reference. In this document we specify first the lexeme, and then the syntax, i.e. how we can mix text and markup commands with each other. LEXICAL DEFINITIONS
In the syntax rules listed in the next section [1] <TEXT> stands for all text except markup commands. [2] Any XXX stands for the markup command [xxx] including its arguments. Each markup command is a Tcl command surrounded by a matching pair of [ and ]. Inside of these delimiters the usual rules for a Tcl command apply with regard to word quotation, nested commands, continuation lines, etc. [3] <WHITE> stands for all text consisting only of spaces, newlines, tabulators and the comment markup command. SYNTAX
The rules listed here specify only the syntax of doctoc documents. The lexical level of the language was covered in the previous section. Regarding the syntax of the (E)BNF itself [1] The construct { X } stands for zero or more occurrences of X. [2] The construct [ X ] stands for zero or one occurrence of X. The syntax: toc = defs TOC_BEGIN contents TOC_END { <WHITE> } defs = { INCLUDE | VSET | <WHITE> } contents = { defs entry } [ defs ] entry = ITEM | division division = DIVISION_START contents DIVISION_END BUGS, IDEAS, FEEDBACK This document, will undoubtedly contain bugs and other problems. Please report such in the category doctools of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have. SEE ALSO
doctoc_intro, doctoc_lang_cmdref, doctoc_lang_faq, doctoc_lang_intro KEYWORDS
doctoc commands, doctoc language, doctoc markup, doctoc syntax, markup, semantic markup CATEGORY
Documentation tools COPYRIGHT
Copyright (c) 2007-2009 Andreas Kupries <andreas_kupries@users.sourceforge.net> doctools 1.0 doctoc_lang_syntax(n)
All times are GMT -4. The time now is 06:23 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy