aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/terminal/tests/filenames
blob: 6a4e33e3ede3f0386cfa9a53e75274b4e2cf6051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash

echo "Home:"
echo "~/"

FULLPATH=$(readlink -f "$0")

echo "This file:"
echo "$FULLPATH"

echo "This file, this line:"
echo "$FULLPATH:11"

echo "This file, this line, this word:"
echo "$FULLPATH:14:34"

echo "This file, with an error message:"
echo "$FULLPATH:18:23: error: C++ requires a type specifier for all declarations"

echo "A link: http://google.com"
echo "Another link: https://www.qt.io"
echo "Another one: https://codereview.qt-project.org/c/qt-creator/qt-creator/+/464740"