Selaa lähdekoodia

Add another useless alias

Alois Mahdal 11 vuotta sitten
vanhempi
commit
f5b9f17bef
1 muutettua tiedostoa jossa 9 lisäystä ja 0 poistoa
  1. 9
    0
      dotfiles/bash/global-before.bashrc

+ 9
- 0
dotfiles/bash/global-before.bashrc Näytä tiedosto

17
     fi
17
     fi
18
 }
18
 }
19
 
19
 
20
+clear_to_bottom() {
21
+    clear
22
+    for ((i=1; i<=$LINES; i++));
23
+    do
24
+        echo "$n"
25
+    done
26
+}
27
+
20
 ### .... ###
28
 ### .... ###
21
 ### BASH ###
29
 ### BASH ###
22
 ### '''' ###
30
 ### '''' ###
27
 export GLOBIGNORE=.:..
35
 export GLOBIGNORE=.:..
28
 
36
 
29
 # some more aliases
37
 # some more aliases
38
+alias cls='clear_to_bottom'
30
 alias ll='ls -lh'
39
 alias ll='ls -lh'
31
 alias lla='ls -lha'
40
 alias lla='ls -lha'
32
 alias open='gnome-open'
41
 alias open='gnome-open'