Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tntnet-config(1) [suse man page]

TNTNET-CONFIG(1)					      General Commands Manual						  TNTNET-CONFIG(1)

NAME
tntnet-config - output compiler flags for tntnet usage SYNOPSIS
tntnet-config [--libs] [--cxxflags] [--config[=app]] [--makefile[=app]] [--project=app] [--autoproject=app] [--help] [--version] DESCRIPTION
This manual page documents briefly the tntnet-config command. OPTIONS
This program's options start with two dashes (`-'). A summary of options is included below. --libs Output linker flags. --cxxflags Output C++ preprocessor and compiler flags. --config[=app] Print default configuration file. --makefile[=app] Print a simple makefile for an ecpp project. --project=app Create a simple ecpp project directory. --autoproject=app Create a autotools based ecpp project. --help Show summary of options. --version Show version of program. AUTHOR
tntnet was written by Tommi Makitalo <tommi@tntnet.org>. This manual page was written by Kari Pahula <kaol@debian.org>, for the Debian project (but may be used by others). SEE ALSO
tntnet(8), ecppc(1), ecppl(1), ecppll(1). More documentation can be found in /usr/share/doc/tntnet-doc/. July 3, 2006 TNTNET-CONFIG(1)

Check Out this Related Man Page

TNTNET-CONFIG(1)					      General Commands Manual						  TNTNET-CONFIG(1)

NAME
tntnet-config - output compiler flags for tntnet usage SYNOPSIS
tntnet-config [--libs] [--cxxflags] [--config[=app]] [--makefile[=app]] [--project=app] [--autoproject=app] [--help] [--version] DESCRIPTION
This manual page documents briefly the tntnet-config command. OPTIONS
This program's options start with two dashes (`-'). A summary of options is included below. --libs Output linker flags. --cxxflags Output C++ preprocessor and compiler flags. --config[=app] Print default configuration file. --makefile[=app] Print a simple makefile for an ecpp project. --project=app Create a simple ecpp project directory. --autoproject=app Create a autotools based ecpp project. --help Show summary of options. --version Show version of program. AUTHOR
tntnet was written by Tommi Makitalo <tommi@tntnet.org>. This manual page was written by Kari Pahula <kaol@debian.org>, for the Debian project (but may be used by others). SEE ALSO
tntnet(8), ecppc(1), ecppl(1), ecppll(1). More documentation can be found in /usr/share/doc/tntnet-doc/. July 3, 2006 TNTNET-CONFIG(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

sed syntax

Hi, How can i use sed command to modify a part of a variable containing "/" by another containing "/" like describe below: VAR="/app/share/eai" VAR1="/app/share" VAR2="/data/test" echo $VAR | sed 's/... ??? # using sed to replace $VAR1 in $VAR by $VAR2 ? (4 Replies)
Discussion started by: jo_aze
4 Replies

2. Shell Programming and Scripting

How to loop through directories to touch files

Hi, Please help me on this. Suppose i have the following directory structure. /app/data /app/data/eng /app/data/med /app/data/bsc each of the directories data,data/eng,data/med,data/bsc holds files with date extension like a.20081230 b.20081230 and so on I need a script to loop... (9 Replies)
Discussion started by: sussane
9 Replies

3. OS X (Apple)

First time Compileing ARSS on G3 hardware

As the title implies I'm taking the jump into linux compiling for os x - Mostly out of desperation. I have a project that hinges on a CLI app called arss (The Analysis & Resynthesis Sound Spectrograph) (note that it used to be called arse;) it converst bmp into wav files. All works fine... (4 Replies)
Discussion started by: orionrush
4 Replies

4. Shell Programming and Scripting

restart process based on file

Hi all. I do have a script "startApp.sh" (app result is a file /opt/extract/appextract.txt) I have no problems with stopping app var1=`ps -ef | grep -v grep | grep MyApp | awk '{print $2}'` kill -9 $var1 What I want to achieve is: I start app, app is doing some extraction, after... (11 Replies)
Discussion started by: e-l-diablo
11 Replies

5. Shell Programming and Scripting

extract DB version from oratab

My oratab has the following contents RMD10203:/u01/app/oracle/product/10.2.0RMD10203:Y RMDIDEVL:/u01/app/oracle/product/11.1.0RMDIDEVL:Y RMDIDES:/u01/app/oracle/product/11.1.0RMDIDES:Y I have a script for which I pass the oracle sid as the parameter I need to extract the version of the... (6 Replies)
Discussion started by: dbins01
6 Replies

6. Shell Programming and Scripting

Creation of multiple directories

I have a folder structure like the below /test/test1/test2/app /test/test3/app /test/test4/test5/app .. I need to create a new folder under "app" in all the above listed directory structure at one shot by the name "subapp" . How can we acheive this using a script . New to unix... (4 Replies)
Discussion started by: rajeshnatarajan
4 Replies

7. Shell Programming and Scripting

using which in a script

I am trying to use which to set a local variable to hold where an app is installed. InstallDir=which app.exe echo $InstallDir When I run "which app.exe" from the shell I get, /cygdrive/c/Program Files/app 1.0.2/bin/app.exe When I add "InstallDir=which app.exe" to my script, it just starts... (7 Replies)
Discussion started by: LMHmedchem
7 Replies

8. Solaris

Mount point expansion /app

Hi Guy's I have mount point called /app with size 10 GB from EMC SAN /dev/dsk/emcpower2g 9.6G 9.8M 9.5G 1% /app I have expanded the size from SAN level to be 20 GB But the mount point still is showing 10 GB Can anyone advice us how to can I expand the new space on /app... (4 Replies)
Discussion started by: roooooot
4 Replies

9. UNIX for Dummies Questions & Answers

[SOLVED] How can i control the same app in two servers?

Hi guys, I need to control that the same app can't run in two servers at the same times. This app is stored in directory, which it's share between these two servers. If one instances is running in one of the servers and someone from the other server execute the same script (star) from the other... (7 Replies)
Discussion started by: Newer
7 Replies

10. Red Hat

Understanding Results from df and du commands

Good day every one. When a use df -h comand on my read hat linux server i get something like this: /dev/mapper/Vg02-Lv19 30G 29G 145M 100% /app Then when i do du -sh /app/ i get 12G /app/ For me it is meaning that only 12G was used on /app partition. How can i see where are... (9 Replies)
Discussion started by: cgege
9 Replies

11. Shell Programming and Scripting

Copy content of multiple sh's into one

Hi, I got the following problem. I got a folder called "renapple" whose content has multiple ".sh" files in it: they all contain one line of text: (this is just an example, the content itself looks different). cp path1/file path2 What I want to do is: - copy the content of all... (19 Replies)
Discussion started by: pasc
19 Replies

12. SCO

Old COBOL app move to new server

We have an old ProLiant ML370 server (10-15 years old) running SCO (version yet to be confirmed), with a single bespoke Cobol app. The server is failing and I need to get the app up and running on new hardware or cloud. I've supported ProLiant servers running Windows for many years but have... (12 Replies)
Discussion started by: Mobble
12 Replies

13. Shell Programming and Scripting

Variable Assignment

Hi I am facing a problem. export local_folder=/opt/app/ cd /opt/app/abc/ abcversion="abc*" (abcga5 is inside /opt/app/abc/) echo $abcversion (it echoes the correct version as abcga5 ) Now when I reuse the value of abcversion for a below path: export... (6 Replies)
Discussion started by: ankur328
6 Replies

14. Shell Programming and Scripting

Version checking

Hi everyone, I have binary file that call “app”, this file must be bind with “config file” to run. problem is I have 10 different version of “app”, in different path with different “config file”! This command show version of “app”: root ~: /home/user1/app -version 2.7 The only way... (30 Replies)
Discussion started by: indeed_1
30 Replies

15. Shell Programming and Scripting

Need to split string on single quote as delimiter

I have a variable that contains the following string: FPATH=-rw-rw-r-- 1 user1 dba 0 Aug 7 13:14 /app/F11.3/app/cust/exe/filename1.exe' -rw-rw-r-- 1 user1 dba 0 Aug 19 10:09 /app/app/F11.3/app/cust/sql/33211.sql' -rw-r--r-- 1 user1 dba 0 Aug 6 17:20 /app/F11.2/app/01/mrt/file1.mrt' I... (7 Replies)
Discussion started by: mohtashims
7 Replies