12 lines
515 B
Bash
Executable File
12 lines
515 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
su - -c "chown app: '$HOME'"
|
|
#cat <<EOF >> "$HOME/.bashrc"
|
|
#export FAKETIME='$(date '+%Y-%m-%d 00:00:00')'
|
|
#EOF
|
|
|
|
ln -sf /app/.cxoffice/Microsoft_Office_2016/desktopdata/cxmenu/Shortcuts/cxoffice-fe00-*-1697392954.excel /app/bin/excel
|
|
ln -sf /app/.cxoffice/Microsoft_Office_2016/desktopdata/cxmenu/Shortcuts/cxoffice-fe00-*-1697392954.powerpnt /app/bin/powerpoint
|
|
ln -sf /app/.cxoffice/Microsoft_Office_2016/desktopdata/cxmenu/Shortcuts/cxoffice-fe00-*-1697392954.winword /app/bin/word
|
|
exec "$@"
|