pxkw.hatenadiary.com

めもめも

shell

How to create .mobi after scanning images

Requirements convert # by imagemagic pdftk ebook-convert # by calibre Convert each image into pdf for file in `ls *.jpg`; do convert $file ${file%jpg}pdf; done; Integrate the pdfs pdftk *.pdf cat output integ.pdf Convert pdf to mobi ebook-…

gtkのキーバインドテーマをEmacs化

端末で下記を叩く. gsettings set org.gnome.desktop.interface gtk-key-theme Emacsこれがないと生きた心地がしない。 参考文献 UbuntuSaucy

symlinkをchownする

オプションhを付与する。 chown -h owner:group symlinkchownのマニュアル: -h, --no-dereference affect each symbolic link instead of any referenced file (useful only on systems that can change the ownership of a symlink)なので、 -h を付与しな…