Sponsored Content
Full Discussion: Programming c/C++ in centos
Operating Systems Linux Red Hat Programming c/C++ in centos Post 302963953 by sea on Friday 8th of January 2016 08:36:42 AM
Old 01-08-2016
You're forum member for more than 4.5 years and that is your post?!

What is where you stuck?
And what is your question?
We shall provide you with ideas for youto code?
Why not just code something you've done earlier, since you seem to have an understanding issue with CentOS, compared to your previous OS, which you didnt name.

Now, THE ANSWER! (a general training suggestion)
Make a calculator! Yay!

Have fun or be more clear.
This User Gave Thanks to sea For This Post:
 

6 More Discussions You Might Find Interesting

1. Programming

c programming or unix programming!?

i would like advice on the usbject of c programming (in the middle of reading a book on C). could i benefit more if i apply that knowledge in the unix format if i were able to, or would that take the point out of learning C, basically I want to stay away from strying too far away from unix and use... (1 Reply)
Discussion started by: moxxx68
1 Replies

2. UNIX for Dummies Questions & Answers

Carreer:Networking Programming in Unix (C programming Language)

Hello, I am trying to learn Networking Programming in C in unix enviorment. I want to know how good it is to become a network programmer. i am crazy about Network programming but i also want to opt for the best carreer options. Anybody experienced Network Programmer, please tell me is my... (5 Replies)
Discussion started by: vibhory2j
5 Replies

3. Programming

C Programming - Hardware Programming

Can someone help me on suggesting some ways to access the memory content in RAM directly from C/C++ source code. Please provide me any book name or any URL so that I can get an exhaustive knowledge over it. If possible please give me some tips on interacting with hardwares directly through... (3 Replies)
Discussion started by: nandumishra
3 Replies

4. UNIX for Dummies Questions & Answers

How does unix system administration, unix programming, unix network programming differ?

How does unix system administration, unix programming, unix network programming differ? Please help. (0 Replies)
Discussion started by: thulasidharan2k
0 Replies

5. Red Hat

How to Upgrade Centos 5.7 using Centos 5.8 ISO image on Vmware workstation

Dear Linux Experts, On my windows 7 desktop with the help of Vmware workstation (Version 7.1), created virtual machine and installed Centos 5.7 successfully using ISO image. Query : Is this possible to upgrade the Centos 5.7 using Centos 5.8 ISO image to Centos version 5.8?.. if yes kindly... (2 Replies)
Discussion started by: Ananthcn
2 Replies

6. UNIX for Dummies Questions & Answers

From iOS programming to Linux system programming

Hello. I like Linux and C programming language. Allways wanted to understand kernel and become a Linux system programmer. And I also like Objective-C and iOS. These two programming areas have relations: 1. Linux and iOS are UNIX-like systems, POSIX compliant. 2. It is useful to know C language... (2 Replies)
Discussion started by: Rockatansky
2 Replies
KNIFE-SEARCH(1) 						    Chef Manual 						   KNIFE-SEARCH(1)

NAME
knife-search - Find objects on a Chef Server by query SYNOPSIS
knife search INDEX QUERY (options) -a, --attribute ATTR Show only one attribute -i, --id-only Show only the ID of matching objects -q, --query QUERY The search query; useful to protect queries starting with - -R, --rows INT The number of rows to return -r, --run-list Show only the run list -o, --sort SORT The order to sort the results in -b, --start ROW The row to start returning results at -m, --medium Display medium sized output when searching nodes using the default summary format -l, --long Display long output when searching nodes using the default summary format DESCRIPTION
Search is a feature of the Chef Server that allows you to use a full-text search engine to query information about your infrastructure and applications. You can utilize this service via search calls in a recipe or the knife search command. The search syntax is based on Lucene. INDEXES
Search indexes are a feature of the Chef Server and the search sub-command allows querying any of the available indexes using SOLR query syntax. The following data types are indexed for search: o node o role o environment o clients o data bag Data bags are indexed by the data bag's name. For example, to search a data bag named "admins": knife search admins "field:search_pattern" QUERY SYNTAX
Queries have the form field:search_pattern where field is a key in the JSON description of the relevant objects (nodes, roles, environ- ments, or data bags). Both field and search_pattern are case-sensitive. search_pattern can be an exact, wildcard, range, or fuzzy match (see below). The field supports exact matching and limited wildcard matching. Searches will return the relevant objects (nodes, roles, environments, or data bags) where the search_pattern matches the object's value of field. FIELD NAMES Field names are the keys within the JSON description of the object being searched. Nested Keys can be searched by placing an underscore ("_") between key names. WILDCARD MATCHING FOR FIELD NAMES The field name also has limited support for wildcard matching. Both the "*" and "?" wildcards (see below) can be used within a field name; however, they cannot be the first character of the field name. EXACT MATCHES Without any search modifiers, a search returns those fields for which the search_pattern exactly matches the value of field in the JSON description of the object. WILDCARD MATCHES Search support both single- and multi-character wildcard searches within a search pattern. '?' matches exactly one character. '*' matches zero or more characters. RANGE MATCHES Range searches allows one to match values between two given values. To match values between X and Y, inclusively, use square brackets: knife search INDEX 'field:[X TO Y] To match values between X and Y, exclusively, use curly brackets: knife search INDEX 'field:{X TO Y}' Values are sorted in lexicographic order. FUZZY MATCHES Fuzzy searches allows one to match values based on the Levenshtein Distance algorithm. To perform a fuzzy match, append a tilda (~) to the search term: knife search INDEX 'field:term~' This search would return nodes whose field was 'perm' or 'germ'. BOOLEAN OPERATORS The boolean operators NOT, AND, and OR are supported. To find values of field that are not X: knife search INDEX 'field:(NOT X)' To find records where field1 is X and field2 is Y: knife search INDEX 'field1:X AND field2:Y' To find records where field is X or Y: knife search INDEX 'field:X OR field:Y' QUOTING AND SPECIAL CHARACTERS In order to avoid having special characters and escape sequences within your search term interpreted by either Ruby or the shell, enclose them in single quotes. Search terms that include spaces should be enclosed in double-quotes: knife search INDEX 'field:"term with spaces"' The following characters must be escaped: + - && || ! ( ) { } [ ] ^ " ~ * ? : EXAMPLES
Find the nodes with the fully-qualified domain name (FQDN) www.example.com: knife search node 'fqdn:www.example.com' Find the nodes running a version of Ubuntu: knife search node 'platform:ubuntu*' Find all nodes running CentOS in the production environment: knife search node 'chef_environment:production AND platform:centos' KNOWN BUGS
o Searches against the client index return no results in most cases. (CHEF-2477) o Searches using the fuzzy match operator (~) produce an error. (CHEF-2478) SEE ALSO
knife-ssh(1) http://wiki.opscode.com/display/chef/Attributes Lucene Query Parser Syntax http://lucene.apache.org/java/2_3_2/queryparsersyn- tax.html AUTHOR
Chef was written by Adam Jacob adam@opscode.com with many contributions from the community. DOCUMENTATION
This manual page was written by Joshua Timberman joshua@opscode.com. Permission is granted to copy, distribute and / or modify this docu- ment under the terms of the Apache 2.0 License. CHEF
Knife is distributed with Chef. http://wiki.opscode.com/display/chef/Home Chef 10.12.0 June 2012 KNIFE-SEARCH(1)
All times are GMT -4. The time now is 07:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy