Sponsored Content
Top Forums Shell Programming and Scripting Read a file name from a text file and save it in a variable Post 302771851 by santosh2626 on Thursday 21st of February 2013 07:48:43 PM
Old 02-21-2013
Bug Read a file name from a text file and save it in a variable

i have a text file consists of different file names like:

line 1: lib/libIMb.so message broker file
line 2: lil/imbdfg.lil message broker file

i need to extract libIMb.so and imbdfg.lil files from those lines and save them in a variable. so that i can search for those files in different directories.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Read file from within AWK and save $1 to a variable

Hi I am very new to NAWK programming so this question is probably going to sound really stupid: I have a NAWK script which contains a DO loop. During each loop it runs a FORTRAN program which in turn generates two output files , each one containing 2 integer variables. I would appreciate it... (8 Replies)
Discussion started by: robbiegregg
8 Replies

2. Shell Programming and Scripting

Read popup message and save it in file

Hi, I am trying to automate one of the application using IE:Auotmation in perl My web application has few text fields and 2 buttons "Save Changes" and "Discard Changes".I have written code to enter values to the text fields fetching from input file and click the button "Save Changes".As soon as... (0 Replies)
Discussion started by: jyo123.jyothi
0 Replies

3. Shell Programming and Scripting

Data fetched from text file and save in a csv file

Hi i have wriiten a script which fetches the data from text file, and saves in the output in a text file itself, but i want that the output should save in different columns. I have the output like: For Channel:response_time__24.txt 1547 data points 0.339 0.299 0.448 0.581 7.380 ... (1 Reply)
Discussion started by: rohitkalia
1 Replies

4. Shell Programming and Scripting

Perl:Read single value from text file and assign to variable

Hello All, A part of my very basic perl code requires me to read a single value from a text file. The file output is the following: Reading image ... done IMAGEREGION=0x0x0-256x162x256 VOXELDIMENSION=0.9375000000x1.2000000477x0.9375000000 VOXELNUMBER=10527001... (7 Replies)
Discussion started by: ncl
7 Replies

5. Shell Programming and Scripting

Read file and for each line replace two variables, add strings and save output in another file

Hi All, I have a file, let's call it "info.tmp" that contains data like this .. ABC123456 PCX333445 BCD789833 I need to read "info.tmp" and for each line add strings in a way that the final output is put /logs/ua/dummy.trigger 'AAA00001.FTP.XXX.BLA03A01.xxxxxx(+1)' where XXX... (5 Replies)
Discussion started by: Andy_ARG
5 Replies

6. Fedora

How to read a text file and assign the values in the same to a variable in loop

Hi, I have a text file with multiple lines, each having data in the below format <DOB>,<ADDRESS> I have to write a script which reads each line in the text file in loop, assign the values to these variables and do some further processing in it. Using the following code prints the... (1 Reply)
Discussion started by: manishab00
1 Replies

7. UNIX for Advanced & Expert Users

How to read a text file and assign the values in the same to a variable in loop

Hi, I have a text file with multiple lines, each having data in the below format <DOB>,<ADDRESS> I have to write a script which reads each line in the text file in loop, assign the values to these variables and do some further processing in it. Using the following code prints the values... (12 Replies)
Discussion started by: manishab00
12 Replies

8. Shell Programming and Scripting

Perl: How to read text from file and process $variable in that data too.

In the hello.htm have the sentenses: Hello $name How are you? The perl script: $name = "David"; open(HEADER,"hello.htm"); while(<HEADER>) { $html .= $_; } close(HEADER); print "$html";I making something about template. But it can't process the $name variable. (4 Replies)
Discussion started by: natong
4 Replies

9. Programming

Extract text from file and save as individual file

Dear All I am using the following shell script to extract the columns from the file. for filename in *.rpt do awk -F"\t" ' BEGIN {OFS="|"} FNR > 0 {print $1,$2,$3,$5,FILENAME} ' $filename >> output.txt done However, the script works fine. Instead of saving the single... (4 Replies)
Discussion started by: bala06
4 Replies

10. Shell Programming and Scripting

Read a file and save every word in a variable to use

Hello there so i have a txt file containing word like "one two three four plus four five six". I want to save every word in the file into a variable, and then use that variable to generate real numbers and apply the arithmetic value on them. example: the txt files becomes 123 + 456 and... (10 Replies)
Discussion started by: azaiiez
10 Replies
mosquitto(8)															      mosquitto(8)

NAME
mosquitto - an mqtt broker SYNOPSIS
mosquitto [-c config file] [-d | --daemon] [-p port number] DESCRIPTION
mosquitto is a broker for the mqtt protocol version 3.1. OPTIONS
-c, --config-file Load configuration from a file. If not given, the default values as described in mosquitto.conf(5) are used. -d, --daemon Run mosquitto in the background as a daemon. All other behaviour remains the same. -p, --port Listen on the port specified instead of the default 1883. This acts in addition to the port setting in the config file. May be spec- ified multiple times to open multiple sockets listening on different ports. This socket will be bound to all network interfaces. LIMITATIONS
mosquitto implements all of the mqtt protocol version 3.1, but there are some limitations compared to rsmb. o There are fewer configuration options. o There is less logging information. o It isn't as well tested or documented... It should be noted that all of the above limitations should have "currently" included in them. They will all be fixed at some point. BROKER STATUS
Clients can find information about the broker by subscribing to topics in the $SYS hierarchy as follows. Topics marked as static are only sent once per client on subscription. All other topics are updated every sys_interval seconds. If sys_interval is 0, then updates are not sent. $SYS/broker/bytes/per second/received The average number of bytes received per second since the broker started. $SYS/broker/bytes/per second/sent The average number of bytes sent per second since the broker started. $SYS/broker/bytes/received The total number of bytes received since the broker started. $SYS/broker/bytes/sent The total number of bytes sent since the broker started. $SYS/broker/changeset The repository changeset (revision) associated with this build. Static. $SYS/broker/clients/active The number of currently connected clients $SYS/broker/clients/inactive The total number of persistent clients (with clean session disabled) that are registered at the broker but are currently disconnect- ed. $SYS/broker/clients/maximum The maximum number of active clients that have been connected to the broker. This is only calculated when the $SYS topic tree is up- dated, so short lived client connections may not be counted. $SYS/broker/clients/total The total number of active clients currently connected to the broker. $SYS/broker/heap/current size The current size of the heap memory in use by mosquitto. Note that this topic may be unavailable depending on compile time options. $SYS/broker/heap/maximum size The largest amount of heap memory used by mosquitto. Note that this topic may be unavailable depending on compile time options. $SYS/broker/messages/inflight The number of messages with QoS>0 that are awaiting acknowledgments. $SYS/broker/messages/per second/received The average number of messages received per second since the broker started. $SYS/broker/messages/per second/sent The average number of messages sent per second since the broker started. $SYS/broker/messages/received The total number of messages received since the broker started. $SYS/broker/messages/sent The total number of messages sent since the broker started. $SYS/broker/messages/stored The number of messages currently held in the message store. $SYS/broker/timestamp The timestamp at which this particular build of the broker was made. Static. $SYS/broker/uptime The amount of time in seconds the broker has been online. $SYS/broker/version The version of the broker. Static. WILDCARD TOPIC SUBSCRIPTIONS
In addition to allowing clients to subscribe to specific topics, mosquitto also allows the use of two wildcards in subscriptions. + is the wildcard used to match a single level of hierarchy. For example, for a topic of "a/b/c/d", the following example subscriptions will match: o a/b/c/d o +/b/c/d o a/+/c/d o a/+/+/d o +/+/+/+ The following subscriptions will not match: o a/b/c o b/+/c/d o +/+/+ The second wildcard is # and is used to match all subsequent levels of hierarchy. With a topic of "a/b/c/d", the following example sub- scriptions will match: o a/b/c/d o # o a/# o a/b/# o a/b/c/# o +/b/c/# The $SYS hierarchy does not match a subscription of "#". If you want to observe the entire $SYS hierarchy, subscribe to $SYS/#. Note that the wildcards must be only ever used on their own, so a subscription of "a/b+/c" is not valid use of a wildcard. The # wildcard must only ever be used as the final character of a subscription. BRIDGES
Multiple brokers can be connected together with the bridging functionality. This is useful where it is desirable to share information be- tween locations, but where not all of the information needs to be shared. An example could be where a number of users are running a broker to help record power usage and for a number of other reasons. The power usage could be shared through bridging all of the user brokers to a common broker, allowing the power usage of all users to be collected and compared. The other information would remain local to each broker. For information on configuring bridges, see mosquitto.conf(5). SIGNALS
SIGHUP Upon receiving the SIGHUP signal, mosquitto will attempt to reload configuration file data, assuming that the -c argument was pro- vided when mosquitto was started. Not all configuration parameters can be reloaded without restarting. See mosquitto.conf(5) for de- tails. SIGUSR1 Upon receiving the SIGUSR1 signal, mosquitto will write the persistence database to disk. This signal is only acted upon if persis- tence is enabled. SIGHUP Upon receiving the SIGHUP signal, mosquitto will attempt to reload its configuration. Not all configuration parameters can be reloaded without a restart. See mosquitto.conf(5) for details. SIGUSR2 The SIGUSR2 signal causes mosquitto to print out the current subscription tree, along with information about where retained messages exist. This is intended as a testing feature only and may be removed at any time. FILES
/etc/mosquitto/mosquitto.conf Configuration file. See mosquitto.conf(5). /var/lib/mosquitto/mosquitto.db Persistent message data storage location if persist enabled. /etc/hosts.allow, /etc/hosts.deny Host access control via tcp-wrappers as described in hosts_access(5). BUGS
mosquitto bug information can be found at http://launchpad.net/mosquitto SEE ALSO
mqtt(7) mosquitto.conf(5) hosts_access(5) mosquitto_pub(1) mosquitto_sub(1) libmosquitto(3) THANKS
Thanks to Andy Stanford-Clark for being one of the people who came up with MQTT in the first place and providing clarifications of the pro- tocol. Thanks also to everybody at the Ubuntu UK Podcast and Linux Outlaws for organising OggCamp, where Andy gave a talk that inspired mosquitto. AUTHOR
Roger Light <roger@atchoo.org> 5 February 2012 mosquitto(8)
All times are GMT -4. The time now is 05:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy