slackbuilds_ponce/office/smoffice2018/presentations18

11 lines
318 B
Text
Raw Normal View History

#!/bin/sh
# A script to run Presentations.
ext="${@##*.}"
shopt -s nocasematch
case "$ext" in
"prs" ) /opt/smoffice2018/presentations -S\""$@"\";;
"pps" ) /opt/smoffice2018/presentations -S\""$@"\";;
"ppsx" ) /opt/smoffice2018/presentations -S\""$@"\";;
* ) /opt/smoffice2018/presentations "$@";;
esac