10 lines
		
	
	
		
			131 B
		
	
	
	
		
			Bash
		
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			131 B
		
	
	
	
		
			Bash
		
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								set -e
							 | 
						||
| 
								 | 
							
								set +x
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								trap "cd $(pwd -P)" EXIT
							 | 
						||
| 
								 | 
							
								cd "$(dirname "$0")"
							 | 
						||
| 
								 | 
							
								SCRIPT_FOLDER=$(pwd -P)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								bash "../chromium/clean.sh" "$@"
							 |