This file is indexed.

/usr/share/quickly/templates/ubuntu-application/test/create.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
#!/bin/sh

cd /tmp

rm -rf test-project

rm -rf subdir

HOME=/ quickly create
# ERROR: No template specified for command create.
# Usage: quickly create <template> <project-name>
# Candidate templates are: ubuntu-application, ubuntu-cli, ubuntu-flash-game

quickly create ubuntu-application
# ERROR: No project name specified.
# Usage: quickly create <template> <project-name>

quickly create ubuntu-application 42
# ERROR: unpermitted character in name.
# The name must start with a letter and contain only letters, spaces, dashes (-), and digits.

quickly create ubuntu-application test_project
# ERROR: unpermitted character in name.
# The name must start with a letter and contain only letters, spaces, dashes (-), and digits.

quickly create ubuntu-application test-pröject
# ERROR: unpermitted character in name.
# The name must start with a letter and contain only letters, spaces, dashes (-), and digits.

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

quickly create ubuntu-application test-project
# There is already a file or directory named test-project
# ERROR: pre_create command failed
# Aborting

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