mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-10-31 05:49:08 +00:00 
			
		
		
		
	
				
					committed by
					
						 Kaleb Elwert
						Kaleb Elwert
					
				
			
			
				
	
			
			
			
						parent
						
							ecc34e0051
						
					
				
				
					commit
					7c172fc9a7
				
			| @@ -107,11 +107,9 @@ Aliases | |||||||
|  |  | ||||||
|   - `df` displays free disk space using human readable units (aliases to `pydf`, if installed). |   - `df` displays free disk space using human readable units (aliases to `pydf`, if installed). | ||||||
|   - `du` displays disk usage using human readable units. |   - `du` displays disk usage using human readable units. | ||||||
|   - `top` displays information about processes (aliased to `htop`, if installed). |   - `top` displays information about processes. | ||||||
|   - `topc` displays information about processes sorted by CPU usage (`htop` not |   - `topc` displays information about processes sorted by CPU usage. | ||||||
|     installed). |   - `topm` displays information about processes sorted by RAM usage. | ||||||
|   - `topm` displays information about processes sorted by RAM usage (`htop` not |  | ||||||
|     installed). |  | ||||||
|  |  | ||||||
| ### Miscellaneous | ### Miscellaneous | ||||||
|  |  | ||||||
|   | |||||||
| @@ -150,16 +150,12 @@ fi | |||||||
|  |  | ||||||
| alias du='du -kh' | alias du='du -kh' | ||||||
|  |  | ||||||
| if (( $+commands[htop] )); then | if [[ "$OSTYPE" == (darwin*|*bsd*) ]]; then | ||||||
|   alias top=htop |   alias topc='top -o cpu' | ||||||
|  |   alias topm='top -o vsize' | ||||||
| else | else | ||||||
|   if [[ "$OSTYPE" == (darwin*|*bsd*) ]]; then |   alias topc='top -o %CPU' | ||||||
|     alias topc='top -o cpu' |   alias topm='top -o %MEM' | ||||||
|     alias topm='top -o vsize' |  | ||||||
|   else |  | ||||||
|     alias topc='top -o %CPU' |  | ||||||
|     alias topm='top -o %MEM' |  | ||||||
|   fi |  | ||||||
| fi | fi | ||||||
|  |  | ||||||
| # Miscellaneous | # Miscellaneous | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user