mirror of
				https://gitea.blesmrt.net/mikaela/shell-things.git
				synced 2025-11-04 11:27:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			586 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			586 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# This is ~/.bash_aliases file by Mika Suomalainen (Mkaysi)
 | 
						|
 | 
						|
# Moving between directories:
 | 
						|
alias ..="cd .."
 | 
						|
alias .="cd ."
 | 
						|
 | 
						|
# As you can see, I don't use/like Vi(m) :)
 | 
						|
alias editor="nano"
 | 
						|
alias vi="nano"
 | 
						|
alias vim="nano"
 | 
						|
 | 
						|
# Use htop instead of top, it's better. Requires htop.
 | 
						|
alias top="htop"
 | 
						|
 | 
						|
# Automaticly adds title to Youtube-dl when downloading videos with it.
 | 
						|
alias youtube-dl="youtube-dl -t"
 | 
						|
 | 
						|
# git specific. This is the command which I use when git asks me to commit something and says that I have modified files, even when I haven't.
 | 
						|
alias gdrop="git stash && git stash drop"
 |