mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			339 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			339 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Find python file
 | |
| alias pyfind='find . -name "*.py"'
 | |
| 
 | |
| # Remove python compiled byte-code in either current directory or in a
 | |
| # list of specified directories
 | |
| function pyclean() {
 | |
|     ZSH_PYCLEAN_PLACES=${*:-'.'}
 | |
|     find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete
 | |
| }
 | |
| 
 | |
| # Grep among .py files
 | |
| alias pygrep='grep --include="*.py"'
 |