1*8b26181fSAndroid Build Coastguard Worker#!/bin/bash 2*8b26181fSAndroid Build Coastguard Worker 3*8b26181fSAndroid Build Coastguard Worker# $1 Path to the new version. 4*8b26181fSAndroid Build Coastguard Worker# $2 Path to the old version. 5*8b26181fSAndroid Build Coastguard Worker 6*8b26181fSAndroid Build Coastguard Workercp -a -n $2/config.h $1/ 7*8b26181fSAndroid Build Coastguard Workercp -a $2/.gitignore $1/ 8*8b26181fSAndroid Build Coastguard Workercp -a -n $2/pcap-netfilter-linux-android.h $1/ 9*8b26181fSAndroid Build Coastguard Workercp -a -n $2/pcap-netfilter-linux-android.c $1/ 10*8b26181fSAndroid Build Coastguard Workercp -a -n $2/grammar.c $1/ 11*8b26181fSAndroid Build Coastguard Workercp -a -n $2/grammar.h $1/ 12*8b26181fSAndroid Build Coastguard Workercp -a -n $2/scanner.c $1/ 13*8b26181fSAndroid Build Coastguard Workercp -a -n $2/scanner.h $1/ 14*8b26181fSAndroid Build Coastguard Worker 15