kboghdady / youTube_ads_4_pi-hole

YouTube script to add the new Ads list for Pi-hole
2.45k stars 266 forks source link

Remove backticks; add double-quotes #6

Closed naltun closed 5 years ago

naltun commented 5 years ago

Backticking is a legacy feature of Bash. The modern method is to use "$()" instead. Also, double-quoting variables will prevent globbing and word splitting. This can have nasty side effects. :)

Awesome project!