2016年3月21日 星期一

ubuntu中impress範本存放位置

impress原始範本放在 /usr/lib/libreoffice/share/template/common/layout/
impress自訂範本放在 /home/user/.config/libreoffice/xx/user/template/ 中
  1. whereis找指令
  2. locate [-ir] keyword
    -i :忽略大小寫的差異;
    -r :後面可接正規表示法的顯示方式
    必要時須執行 updatedb 更新locate資料庫
  3. find [PATH] [option] [action]
    1. 執行 find / -name *.otp 找到範本檔案
    2. find / -name *.otp -exec ls -l {} \;  (加執行動作)