I was facing the same problem,
I was trying to remove all browser vendor prefixes from entire file at a time.
I found an awesome tool postcss-remove-prefixes. Which did my work easily in just seconds.
You can find this tool here postcss-remove-prefix
I assume that you have installed NodeJs and NPM on your system.
Here is the process to use this tool
npm i -g postcss-remove-prefixes
Then use this tool from CMD as
remove-prefixes input.css
This will remove Vendor prefixes from your file
remove-prefixes input.css output.css
This will remove Vendor prefixes from your file and generates output as new file.
:) Enjoy