30/07/2020 02:58, Stephen Hemminger: > Change variable names in python script: replace whitelist
It is not a python script. > with include_files and blacklist with exclude_files. > > Signed-off-by: Stephen Hemminger <[email protected]> > Acked-by: Luca Boccassi <[email protected]> > --- > - whitelist=$(files $flines) > - blacklist=$(files $xlines) > - match=$(aminusb "$whitelist" "$blacklist") > - if [ -n "$whitelist" ] ; then > + include_files=$(files $flines) > + exclude_files=$(files $xlines) > + match=$(aminusb "$include_files" "$exclude_files") > + if [ -n "$include_files" ] ; then With above nit fixed, Acked-by: Thomas Monjalon <[email protected]>

