We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56a057d commit c17b8f9Copy full SHA for c17b8f9
blk
@@ -3,6 +3,19 @@
3
# Save reference to blk command in order to do subsequent calls later.
4
blk=$0
5
6
+if [[ -z $1 ]]; then
7
+ echo "Block/unblock websites:"
8
+ echo ""
9
+ echo " blk [block|unblock] <site1> <site2> <site3> ... [for <amount> <unit> | until <time>]"
10
11
+ echo "List blocked and temporary unblocked websites:"
12
13
+ echo " blk list"
14
15
+ echo "See github.com/mhgbrg/blk for more examples."
16
+ exit
17
+fi
18
+
19
# First parameter can be an action. If it isn't, default to `block`.
20
case $1 in
21
'list')
0 commit comments