Browse Source

Separate declaration from initialization

Alois Mahdal 6 years ago
parent
commit
79947d9b36
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      bin/notifirc

+ 2
- 1
bin/notifirc View File

@@ -2,7 +2,8 @@
2 2
 
3 3
 
4 4
 usage() {
5
-    local self=$(basename "$0")
5
+    local self      # our name
6
+    self=$(basename "$0")
6 7
     echo "usage: $self [options] message" >&2
7 8
     echo "usage: $self [options] [-l max_lines] [-L max_width] -f message_file|-" >&2
8 9
     echo "options: [-h host] [-p port] [-n nick] [-c context] [-u user]" >&2