Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

openscad-testrun(1) [debian man page]

OPENSCAD-TESTRUN(1)					      General Commands Manual					       OPENSCAD-TESTRUN(1)

NAME
openscad-testrun - set up and run the OpenSCAD test suite SYNOPSIS
openscad-testrun [options] DESCRIPTION
This manual page documents briefly the openscad-testrun command. openscad-testrun is a script that sets up a directory in which the OpenSCAD test suite (implemented in ctest) can be run by creating sym- links to the system locations of the input data, and runs it. The created directory is not removed, but will contain the test results in addition to the symlinks. It is required as the test suite in its original form expects all the test input and output data in relative locations, and the typical user has no write access to where the data resides. Future changes to the test suite might make it more flexible, removing the need for this script. OPTIONS
-d directory, --directory directory Set up the tests in a directory called directory. By default, this is generated from the current date and time like openscad- test-2012-02-15_13:37. -n, --dry-run Do not run the test suite, just set it up. All additional arguments are passed on to ctest. AUTHOR
The OpenSCAD test suite was written by Clifford Wolf, Marius Kintel, and others. The openscad-testrun script was written by chrysn. This manual page was written by chrysn <chrysn@fsfe.org>, for the Debian project (and may be used by others). 2012-02-16 OPENSCAD-TESTRUN(1)

Check Out this Related Man Page

OPENSCAD(1)						      General Commands Manual						       OPENSCAD(1)

NAME
openscad - script file based graphical CAD environment SYNOPSIS
openscad [options] [file] DESCRIPTION
This manual page documents briefly the openscad command. openscad is a software for creating solid 3D CAD objects. It focuses on CAD aspects rather than artistic ones. OpenSCAD will start as a graphical program unless export options are given (see below). For the usage of the GUI and a description of the OpenSCAD language see the OpenSCAD user manual at http://en.wikibooks.org/wiki/OpenSCAD_User_Manual. OPTIONS
-o outputfile Export the given file to outputfile in STL, OFF, DXF or CSG format, depending on file extension of outputfile (which has to be lower case). If this option is given, the GUI will not be started. -d file.deps If the -d option is given, all files accessed while exporting are written to the given deps file in the syntax of a Makefile. -m make_command If a nonexisting file is accessed during OpenSCAD's operation, it will try to invoke make_command missing_file to create the missing file, and then read it again. -D var=val This option can be used to assign constant values to OpenSCAD variables. The variable's value is an expression, so if this mechanism is used to assign strings, care has to be taken that the shell does not consume quotation marks. More than one -D options can be given. -v, --version Show version of program. AUTHOR
OpenSCAD was written by Clifford Wolf, Marius Kintel, and others. This manual page was written by chrysn <chrysn@fsfe.org>, for the Debian project (and may be used by others). 2011-11-03 OPENSCAD(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Increasing a directory size

Hello all Can someone tell me I am running a script and the outputs directory is too small to contain the newly created file as a result of this script. How can I increase the directory size? Thanks (9 Replies)
Discussion started by: jonest
9 Replies

2. Shell Programming and Scripting

back to basics with GREP and FOR

Hi, consider this data file - data.dat - with the below contents this is a test this is no test this is also a test the below script - for i in `grep a data.dat` do echo $i done will produce the output -- this is a test this is (7 Replies)
Discussion started by: ss1968
7 Replies

3. Shell Programming and Scripting

Sorting prob

Hi I have a directory having following three set of files as follows: test.20060804 test.20060801 test.20060802 I want to list the latest file which is less than 20060803. in this case, it will be test.20060802. How can i achieve the same? Any pointers to above will be appreciated. ... (7 Replies)
Discussion started by: Vikas Sood
7 Replies

4. UNIX for Dummies Questions & Answers

exit status conditions

Hi all, i am writing a script to test if some servers are down and prompt if test positive. i used rlogin and rsh then exit but the script when run, logs into the servers and stays. pls what can i do to salvage this? or what other options do you suggest? (6 Replies)
Discussion started by: sdcoms
6 Replies

5. Shell Programming and Scripting

Help regarding Error message: A test command parameter is not valid

Hi I am getting few messages when trying to run my script from the following lines in the script if test then // SomeCode fi The messages are as follows: testing.sh: OBLIGOR_GROUP_ID: 0403-012 A test command parameter is not valid. testing.sh:... (5 Replies)
Discussion started by: skyineyes
5 Replies

6. Solaris

test and .test in same directory

i am using solaris 5.10. i can create two different files "test" and ".test" in the same directory. now suppose i want to change the attribute of the hidden file .test to visible is it possible??? since "." is just an attribute to mark a file hidden why is unix allows creation of "file" and... (14 Replies)
Discussion started by: vikashtulsiyan
14 Replies

7. UNIX for Dummies Questions & Answers

insert period at the end of each line

file1 contains: this is a test this is a test and only a test this is another test this is another test and only another only i'd like my file to look like this: this is a test. this is a test and only a test. this is another test. this is another test and only another only. (6 Replies)
Discussion started by: tjmannonline
6 Replies

8. Shell Programming and Scripting

Some problem about file test

Hi, I'm writing a part of script to test the files, here is what is looks like: if then do somthing fi This script runs well on HPUX. However, when I test it on Linux(redhat), it only works if there is only one file with name A*.TXT. If there's more than one files with... (8 Replies)
Discussion started by: phantandy
8 Replies

9. Shell Programming and Scripting

Getting required fields from a test file in required fromat in unix

My data is something like shown below. date1 date2 aaa bbbb ccccc date3 date4 dddd eeeeeee ffffffffff ggggg hh I want the output like this date1date2 aaa eeeeee I serached in the forum but didn't find the exact matching solution. Please help. (7 Replies)
Discussion started by: rdhanek
7 Replies

10. Shell Programming and Scripting

Adding date and time to file name

Hi All, i wanted to add date and time to the file names in the same directory so lets say a file in the directory is test.txt then after running the shell script it should be test-15-11-2010.txt. So I used the following script which works, #!/bin/bash thetime=`date +%Y-%m-%d--%H:%M:%S`... (7 Replies)
Discussion started by: cc_at_work
7 Replies

11. UNIX for Dummies Questions & Answers

How to allow a different user to run a script

Hi I have a script that i would like to be run by a different user. For example, I have a file called 'mytest.pl' created by user 'user4' What command should i use to make sure that user 'ydanial' has ability to run 'mytest.pl' ? Thanks (6 Replies)
Discussion started by: DallasT
6 Replies

12. Shell Programming and Scripting

split content and write to new record

Hi, Help required to split record value and write to new row. Input a~b~c~value in ('3','4','5')~test output a~b~c~3~test a~b~c~4~test a~b~c~5~test input a~b~c~value in ('3','4')~test output a~b~c~3~test a~b~c~4~test (8 Replies)
Discussion started by: Jairaj
8 Replies

13. Shell Programming and Scripting

Capture the data in Linux .While doing load test.

Hi All, I am trying to capture the data in linux .While doing load test. is there's any sample script please help me. Linux test4 2.6.18-308.8.1.el5 #1 SMP Fri May 4 16:43:02 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux Thanks, (5 Replies)
Discussion started by: sam1226
5 Replies

14. Linux

Add a user with no password

I want to add a user like below in Linux. Please assist Below is the information from /etc/passwd file ---------- Post updated at 02:04 PM ---------- Previous update was at 10:05 AM ---------- Not sure why there is X in shadow file (6 Replies)
Discussion started by: prash358
6 Replies

15. Shell Programming and Scripting

Shell script to solve query

Hi I have data in the below format in two columns in excel which i will copy to notepad. test as rec1, string test as rec2, byteint test as rec3, string update date as test, datetime name as tes2 string I need to add trim function on all the string columns and keep the remaining... (10 Replies)
Discussion started by: pisikar
10 Replies