11 lines
421 B
Bash
Executable File
11 lines
421 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p /app/bin/
|
|
|
|
/opt/cxoffice/bin/cxinstaller
|
|
ln -sf /app/.cxoffice/Microsoft_Office_2016/desktopdata/cxmenu/Shortcuts/cxoffice*.excel /app/bin/excel
|
|
ln -sf /app/.cxoffice/Microsoft_Office_2016/desktopdata/cxmenu/Shortcuts/cxoffice*.powerpnt /app/bin/powerpoint
|
|
ln -sf /app/.cxoffice/Microsoft_Office_2016/desktopdata/cxmenu/Shortcuts/cxoffice*.winword /app/bin/word
|
|
|
|
su - -c "chown app: '$HOME'"
|