charvo_a

Untitled

Jan 22nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. # my aliases
  2. alias ne='emacs -nw'
  3. alias log='./Téléchargements/instantbird/instantbird'
  4. alias clean='rm *~'
  5. alias fclean='rm *.o'
  6. alias sl='ls'
  7. alias xs='cd'
  8.  
  9. alias blih='python3.4 ~/Downloads/blih-1.7/blih.py'
  10. alias cleandmg='find . -name "*.dmg" -type f -delete'
  11. alias cleantorrent='find . -name "*.torrent" -type f -delete'
  12. alias cleanzip='find . -name "*.zip" -type f -delete'
  13. alias cleanall='find . -name "*~" -type f -delete'
  14. alias purgeallbuilds='rm -rf ~/Library/Developer/Xcode/DerivedData/*'
  15.  
  16. function cd() {
  17.     builtin cd $1;
  18.     ls -a;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment