View Single Post
Old 14th April 2017, 22:08   #14205  |  Link
Reino
Registered User
 
Reino's Avatar
 
Join Date: Nov 2005
Posts: 693
Quote:
Originally Posted by XadoX View Post
Is there a way while using windows PowerShell to output the eac3to options as list, like usualy with cmd?
I have very little experience with PowerShell, but I believe it can on its own, yes.
Cmd on the other hand doesn't have a replace-tool, so you'd have to use 3rd party software.
My favorite:
Code:
eac3to.exe | xidel.exe -s - -e "replace($raw,'[\b]','','!')" | clip
or
eac3to.exe | xidel.exe -s - -e "replace($raw,'\x08','','!')" | clip
Or Cygwin's sed.exe:
Code:
eac3to.exe | sed.exe "s/\x08//g" | clip
__________________
My hobby website
Reino is offline