文書変換ツール

[root@c ~]# yum --enablerepo=epel install pandoc

wgetで取得したhtmlらを単純にtextへ変換するには

#bin/bash
 
for i in `find . -name *.html`;do
  echo   $i ${i%*}.txt
  pandoc -o ${i%*}.txt  $i
 
done

でできる

utf8/sjis問題が、、、

最新の60件
2026-09-11 2026-09-06 2026-09-05 2026-08-31 2026-08-27 2026-08-24 2026-08-20 2026-08-18 2026-08-17 2026-08-16 2026-08-15 2026-08-13 2026-08-12 2026-08-11 2026-08-09 2026-07-30 2026-07-25 2026-07-24 2026-07-20 2026-07-18 2026-07-17 2026-07-16 2026-07-08 2026-07-07 2026-07-06 2026-07-04 2026-07-02 2026-06-27 2026-06-24 2026-06-21 2026-06-17 2026-06-14 2026-06-13 2026-06-09 2026-06-08 2026-06-05 2026-06-04

edit


トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2017-07-10 (月) 20:02:36