We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b39978 commit 0c08c87Copy full SHA for 0c08c87
tutorial.sh
@@ -1,3 +1,15 @@
1
+#checks, if pv is installed
2
+if ! command -v pv &> /dev/null; then
3
+ echo "pv is not installed, but needed for the tutorial. Please install (i. e. through \"sudo apt install pv\")!"
4
+ exit
5
+fi
6
+
7
+#checks, if autotool-helper is installed
8
+if ! command autotool-helper &> /dev/null; then
9
+ echo "autotool-helper could not be found. Please install (through \"stack install && stack install\") and make available in PATH variable!"
10
11
12
13
echo "# Step 1: show available tasks" |pv -qL 12
14
sleep .2s
15
echo "> autotool-helper tasks" |pv -qL 12
0 commit comments