mirror of
https://github.com/morgan9e/scripts
synced 2026-04-13 16:04:08 +09:00
9 lines
183 B
Bash
9 lines
183 B
Bash
#!/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\""
|