This file is indexed.

/usr/share/roslaunch/resources/example.launch is in python-roslaunch 1.11.16-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<launch>

  <!-- localhost definition can be omitted. -->
  <machine name="localhost" address="localhost" default="true" />
  <machine name="localhost-altroot" address="localhost" env-loader="/opt/ros/fuerte/env.sh" />

  <!-- 

  Parameter Server parameters. You can omit the 'type' attribute if
  value is unambiguous. Supported types are str, int, double, bool.
  You can also specify the contents of a file instead using the
  'textfile' or 'binfile' attributes.
  
  -->
  <param name="somestring1" value="bar" />
  <!-- force to string instead of integer -->
  <param name="somestring2" value="10" type="str" />
  
  <param name="someinteger1" value="1" type="int" />
  <param name="someinteger2" value="2" />
  
  <param name="somefloat1" value="3.14159" type="double" />  
  <param name="somefloat2" value="3.0" />
  
  <!-- you can set parameters in child namespaces -->
  <param name="wg/childparam" value="a child namespace parameter" />  
  
  <!-- upload the contents of a file as a param -->
  <param name="configfile" textfile="$(find roslaunch)/resources/example.launch" />
  <!-- upload the contents of a file as base64 binary as a param -->
  <param name="binaryfile" binfile="$(find roslaunch)/resources/example.launch" />
  <!-- upload the output of a command as a param. -->
  <param name="commandoutput" command="cat &quot;$(find roslaunch)/resources/example.launch&quot;" />
  
  <!-- Group a collection of tags. ns attribute is optional -->
  <group ns="wg"> 
    <!-- remap applies to all future nodes in this group -->
    <remap from="chatter" to="hello"/> 

    <node name="listener" pkg="rospy" type="listener.py" respawn="true" />

    <node name="talker1" pkg="rospy" type="talker.py">
      <env name="ENV_EXAMPLE" value="example value" />
      <remap from="foo" to="bar"/>
      <!-- params within node tags are equivalent to ~params. 
           You must set the 'name' attribute of a node to use this feature. -->
      <param name="talker_param" value="a value" />
    </node>

    <node name="talker2" pkg="rospy" type="talker.py" />

  </group>

  
  <!-- import another roslaunch config file -->
  <group ns="included">
     <include file="$(find roslaunch)/resources/example-include.launch" />
  </group>
  <!-- more compact import syntax -->
  <include ns="included2" file="$(find roslaunch)/resources/example-include.launch" />
  
</launch>