What does the LIST command do?
LIST displays case values for variables in the active dataset. The output is similar to the output produced by the PRINT command. However, LIST is a procedure and reads data, whereas PRINT is a transformation and requires a procedure (or the EXECUTE command) to execute it.
What is a LIST in TCL?
A list is an ordered collection of elements, of no fixed length. The list elements can be any string values, including numbers, variable names, file names, bits of Tcl code and other lists. Lists may be nested to any depth, and are useful for representing trees, among other things.
What does the LIST command do what information is displayed?
Displays property data for selected objects. You can use LIST to display and then copy the properties of selected objects to a text file. For example, for dimensional constraint objects, LIST displays the constraint type (annotation or dynamic), reference type (yes or no), name, expression, and value. …
What are commands in computer?
In computing, a command is a directive to a computer program to perform a specific task. It may be issued via a command-line interface, such as a shell, or as input to a network service as part of a network protocol, or as an event in a graphical user interface triggered by the user selecting an option in a menu.
What are the TCL commands?
Transaction Control Language commands are used to manage transactions in the database. Transactional control commands are used only DML Commands such as INSERT, UPDATE and DELETE. COMMIT, ROLLBACK and SAVEPOINT are the TCL commands used in SQL.
What is DOS command with example?
ARCHIVED: What are some examples of common DOS commands?
| help | List commands (only in DOS versions 5 or later). |
|---|---|
| md c:\diry | Make a new subdirectory named diry in the c:\ directory. |
| cd c:\diry | Change to subdirectory diry . |
| rd c:\diry | Remove the existing subdirectory named diry . |
| del file.ext | Delete a file named file.ext . |