Sponsored Content
Full Discussion: File Table in HP-UX
Top Forums Programming File Table in HP-UX Post 5087 by PxT on Tuesday 7th of August 2001 02:41:45 PM
Old 08-07-2001
In what context are you encountering this term?

There is a file system table in /etc/fstab which lists all the file systems that the system knows about. There is also a file table in the kernel which keeps track of open files. There are various kernel parameters you can adjust which affect the internal file table.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Check the record count in table (table in oracle)

I have requirement: 1) Check the record count in table (table in oracle) 2) If records exists generate the file for existing records and wait for some time (Go to sleep mode) and Again check the record count after 10 min.......... (Loop this process if record count >0). 3) Generate touch... (1 Reply)
Discussion started by: kamineni
1 Replies

2. Shell Programming and Scripting

Check the record count in table (table in oracle)

I have requirement: 1) Check the record count in table (table in oracle) 2) If records exists generate the file for existing records and wait for some time then Go to sleep mode and Again check the record count after 10 min.......... (Loop this process if record count >0). 3) Generate touch... (1 Reply)
Discussion started by: kamineni
1 Replies

3. Shell Programming and Scripting

select values from db1 table and insert into table of DB2

Hi I am having three oracle databases running in three different machine. their ip address is different. from one of the DB am able to access both the databases.(means am able to select values and insert values in to tables individually.) I need to fetch some data from DB1 table(say DB1 ip is... (2 Replies)
Discussion started by: aemunathan
2 Replies

4. UNIX and Linux Applications

create table via stored procedure (passing the table name to it)

hi there, I am trying to create a stored procedure that i can pass the table name to and it will create a table with that name. but for some reason it creates with what i have defined as the variable name . In the case of the example below it creates a table called 'tname' for example ... (6 Replies)
Discussion started by: rethink
6 Replies

5. UNIX for Dummies Questions & Answers

Creating a condensed table from a pre-existing table in putty

Hello, I'm working with putty on Windows 7 professional and I'd like to know if there's a way to gather specific lines from a pre-existing table and make a new table with that information. More specifically, I'd like the program to look at a specific column, say column N, and see if any of the... (5 Replies)
Discussion started by: Deedee393
5 Replies

6. Shell Programming and Scripting

Build a table from a list by comparing existing table entries

I am new to this shell scripting.... I have a file which contains list of users. This files get updated when new user comes into the system. I want to create script which will give a table containing unique list of users. When I say unique, it means script should match table while parsing... (3 Replies)
Discussion started by: dchavan1901
3 Replies

7. UNIX and Linux Applications

Help in copying table structure to another table with constraints in Oracle

hi, i need to copy one table with data into another table, right now am using create table table1 as select * from table2 i want the constraints of table1 to be copied to table2 also , can anyone give me some solution to copy the constraints also, now am using oracle 10.2.0.3.0... (1 Reply)
Discussion started by: senkerth
1 Replies

8. Shell Programming and Scripting

awk to convert table-by-row to matrix table

Hello, I need some help to reformat this table-by-row to matrix? infile: site1 A:o,p,q,r,s,t site1 C:y,u site1 T:v,w site1 -:x,z site2 A:p,r,t,v,w,z site2 C:u,y site2 G:q,s site2 -:o,x site3 A:o,q,s,t,u,z site3 C:y site3 T:v,w,x site3 -:p,routfile: SITE o p q r s t v u w x y... (7 Replies)
Discussion started by: yifangt
7 Replies

9. Web Development

Getting Rid of Annoying Bootstrap Table Borders and Wayward Table Lines

Bootstrap is great; but we have had some issues with Bootstrapped <tables> (and legacy <fieldset> elements) showing annoying, wayward lines. I solved that problem today with this simple jQuery in the footer: <script> $(function(){ $('tr, td, fieldset,... (0 Replies)
Discussion started by: Neo
0 Replies

10. UNIX for Beginners Questions & Answers

How to find particular file-name in file and get result in table in mail?

We have 100 linux servers, All send logs to both centralize server(server1 and serverb). all send logs every day and stores in /syslog folder with hostname.log file. I need to prepare script to check every day from both centralize server(server1 and serverb) and send mail in table format. ... (1 Reply)
Discussion started by: yash_message
1 Replies
genstrings(1)						    BSD General Commands Manual 					     genstrings(1)

NAME
genstrings -- generate string table from source code SYNOPSIS
genstrings [-a] [-s <routine>] [-skipTable <Table>] [-noPositionalParameters] [-bigEndian | -littleEndian] [-u] [-macRoman] [-q] [-o <outputDir>] file ... DESCRIPTION
The genstrings utility generates a .strings file(s) from the C or Objective-C (.c or .m) source code file(s) given as the argument(s). A .strings file is used for localizing an application for different languages, as described under "Internationalization" in the Cocoa Developer Documentation. * C and Objective-C: Source lines containing text of the form NSLocalizedString("key", comment) or CFCopyLocalizedString("key", comment) will generate an appro- priate string table entry to a file named Localizable.strings. Source lines containing NSLocalizedStringFromTable("key", Table, comment) or CFCopyLocalizedStringFromTable("key", Table, comment) will gen- erate an appropriate string table entry in a file named Table.strings. Source lines with NSLocalizedStringFromTableInBundle("key", Table, bundle, comment) or CFCopyLocalizedStringFromTableInBundle("key", Table, bundle, comment) will generate an appropriate string table entry in Table.strings. Source lines with NSLocalizedStringWithDefaultValue("key", Table, bundle, "value", comment) or CFCopyLocalizedStringWithDefaultValue("key", Table, bundle, "value", comment) will generate an appropriate string table entry in Table.strings. * Format Strings and Positional Parameters: Keys and values of string file entries can include formatting characters. For value strings with multiple formatting arguments, positional parameters are generated. These allow the order of arguments to be changed as needed by each localization (e.g. "File %1$@ contains %2$d bytes." could become "%2$d bytes are contained in file %1$@." in another localization). * Encoding: By default, genstrings will read UTF-8 encoded source files and source files with no non-ASCII characters. Mac Roman encoded files that con- tain non-ASCII characters will not be read successfully unless the -macRoman compatibility flag is used. Developers are strongly encouraged to move to UTF-8 as the encoding for source files as the -macRoman option may be removed in future versions. Embedded non-ASCII characters in UTF-8 files, as well as non-ASCII characters specified by the escape sequences uxxxx and Uxxxxxxxx are read automatically by genstrings. The -u option and genstrings-specific escape sequence are also supported. Generated .strings files are UTF-16 encoded. Host endianness is used unless the -bigEndian or -littleEndian option is specified. The endian options do not affect .strings files being appended to with the -a option. The byte order of the existing file is maintained. OPTIONS
-a Allows the output to be appended to the old output files. However, -a causes the results to be appended to the end of the old file and not merged. -s routine Substitutes routine for NSLocalizedString. For example, -s MyLocalString will catch calls to MyLocalString and MyLocalStringFromTable. -skipTable Table Causes genstrings to skip over the file for Table. Note that any entries in this table will not be generated. -noPositionalParameters Turns off generation of positional parameters. -u Allow unicode characters in the value of strings files. Any occurrence of \Uxxxx (where xxxx are four hex digits) in the source code will be written to the strings file with its Unicode value (in terms of \Uxxxx) for the key, but the actual Unicode value for its value. For Example, CFCopyLocalizedString(CFSTR("AB\U0043D"), "Comment") will result in the key/value pair "AB\U0043D" = "ABCD". Note that non-ASCII characters can now be handled automatically without this option. See 'Encoding' section above for details. -macRoman For compatibility, read source files using Mac Roman encoding. See 'Encoding' section above for details. -q Turns off multiple key/value pairs warning -o outputDir Specifies what directory the tables should be created in. Mac OS X May 7, 2007 Mac OS X
All times are GMT -4. The time now is 04:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy