12 lines
		
	
	
		
			221 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			221 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
alias ..="cd .."
 | 
						|
alias ...="cd ../.."
 | 
						|
alias ....="cd ../../.."
 | 
						|
alias .....="cd ../../../.."
 | 
						|
 | 
						|
alias refresh="source .bashrc"
 | 
						|
 | 
						|
alias dotfiles="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
 | 
						|
 |