Link to home
Start Free TrialLog in
Avatar of faithless1
faithless1

asked on

Script Format

Hello,

I have this script which only keeps a-z characters and I want to keep numerical digits as well and certain characters. How would I specify this?

Thank you


sed '/^$/d' | sed 's/  */ /g' | tr A-Z a-z | sed  -e 's/\([a-z]\+\.\)\+\(RSS\OEM\|DEM\)[^ ]*//g' -e 's/[^a-z ]/ /g' -e 's/[         ]\+/ /g'
ASKER CERTIFIED SOLUTION
Avatar of farzanj
farzanj
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial