This file is indexed.

/usr/share/quickly/templates/ubuntu-application/test/save.sh is in quickly-ubuntu-template 12.08.1-0ubuntu2.

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
#!/bin/sh

cd /tmp

rm -rf test-project

quickly create ubuntu-application test-project
# Creating bzr repository and committing
# Congrats, your new project is setup! cd /tmp/test-project/ to start hacking.
# Creating project directory test-project

cd test-project

bzr status

(echo "Copyright (C) 2010 Oliver Twist <twist@example.com>" > AUTHORS)

(echo "My super cool project" > README)

bzr status
# modified:
#   AUTHORS
# unknown:
#   README

quickly save
# adding README
# Committing to: /tmp/test-project/
# modified AUTHORS
# added README
# Committed revision 2.

bzr log -r -1 | grep '^  ' | sed 's/^  //'
# quickly saved

bzr status

mkdir new-folder

(echo "New File!" > new-folder/new-file)

bzr status
# unknown:
#   new-folder/

quickly save added new-file
# adding new-folder
# adding new-folder/new-file
# Committing to: /tmp/test-project/
# added new-folder
# added new-folder/new-file
# Committed revision 3.

bzr log -r -1 | grep '^  ' | sed 's/^  //'
# added new-file