cat ph.txt
111-222-3333-4444
(222)-234-2932-2929
212-939-2929-2929
с помощью sed вы можете изменить миллионы веб-страниц
cat ph.txt | sed -e 's/^(//;s/)//;s/^/1-/'
1-111-222-3333-4444
1-222-234-2932-2929
1-212-939-2929-2929
для всех html-файлов
find dirname -type f -name "*.html" -exec sed -e 's/^(//;s/)//;s/^/1-/' {} \;