Browse Source

Get rid of useless alias

Name function right in the first place, instead naming it wrong and
renaming it using alias.
Alois Mahdal 10 years ago
parent
commit
b0bc751a10
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      dotfiles/bash/main.bashrc

+ 1
- 2
dotfiles/bash/main.bashrc View File

17
     fi
17
     fi
18
 }
18
 }
19
 
19
 
20
-clear_to_bottom() {
20
+clsz() {
21
     tput clear; tput cup $(tput lines) 0
21
     tput clear; tput cup $(tput lines) 0
22
 }
22
 }
23
 
23
 
35
 # some more aliases
35
 # some more aliases
36
 alias cal='cal -m'
36
 alias cal='cal -m'
37
 alias cls='clear'
37
 alias cls='clear'
38
-alias clsz='clear_to_bottom'
39
 alias ll='ls -lh'
38
 alias ll='ls -lh'
40
 alias lla='ls -lha'
39
 alias lla='ls -lha'
41
 alias open='gnome-open'
40
 alias open='gnome-open'