mirror of
https://github.com/morgan9e/scripts
synced 2026-04-14 16:34:20 +09:00
9 lines
183 B
Plaintext
9 lines
183 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
bef=$1
|
||
|
|
aft=${bef%.*}.odt
|
||
|
|
|
||
|
|
zenity --info --text="Converting $bef to $aft.";
|
||
|
|
eval "~/.python38/bin/hwp5odt \"$bef\" --output \"$aft\""
|
||
|
|
|
||
|
|
eval "libreoffice --writer \"$aft\""
|