mirror of
				https://github.com/kenzok8/openwrt-packages.git
				synced 2025-10-30 07:50:37 +08:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
		
			487 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			487 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| ![github-actions[bot]](/assets/img/avatar_default.png)  | #!/bin/bash /etc/rc.common
 | ||
|  | . /lib/functions.sh | ||
|  |   | ||
|  | name=$(uci get clash.config.config_cus_remove 2>/dev/null) | ||
|  | check_match_name=$(grep -F "$name" "/etc/clash/clashbackup/create_list.conf")  | ||
|  | line_no=$(grep -n "$check_match_name" /etc/clash/clashbackup/create_list.conf |awk -F ':' '{print $1}') | ||
|  | if [ ! -z $check_match_name ];then | ||
|  | sed -i "${line_no}d" /etc/clash/clashbackup/create_list.conf | ||
|  | rm -rf /etc/clash/config/custom/${name} | ||
|  | sed -i '/^$/d' /etc/clash/clashbackup/create_list.conf	 | ||
|  | fi	  |