mirror of
				https://github.com/tmux-plugins/tmux-resurrect.git
				synced 2025-11-03 16:32:13 +00:00 
			
		
		
		
	Merge pull request #210 from eugenevd/20171014-remove_old_backups-find
remove_old_backups() : replace xargs with -exec to handle 0 files found better
This commit is contained in:
		@@ -283,7 +283,7 @@ remove_old_backups() {
 | 
			
		||||
	local -a files
 | 
			
		||||
	files=($(ls -t $(resurrect_dir)/${RESURRECT_FILE_PREFIX}_*.${RESURRECT_FILE_EXTENSION} | tail -n +6))
 | 
			
		||||
	[[ ${#files[@]} -eq 0 ]] ||
 | 
			
		||||
		find "${files[@]}" -type f -mtime +30 | xargs rm
 | 
			
		||||
		find "${files[@]}" -type f -mtime +30 -exec rm -v "{}" \;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
save_all() {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user