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