LoginSignup
1
1

More than 5 years have passed since last update.

Skypeのトーク履歴を整形する

Posted at

背景

Skypeはトーク履歴をテキストファイルでエクスポートできないようなので、トーク履歴をコピペしました。

作成したシェルスクリプト

bash
sed -e "s/.*] //" before.txt > after.txt

整形した内容

  • 時刻表示が不要だったので消しました。
before
[2017/03/05 23:56:19] taumu: ほげほげほげほげ
[2017/03/05 23:56:25] cywath10: ふがふがふがふが
after
taumu: ほげほげほげほげ
cywath10: ふがふがふがふが

LINE版も書いてます。

LINEのトーク履歴を整形する
http://qiita.com/taumu/items/278b2a3a1530498a62d1

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1