blob: bd645175c9e9866f00c011f13330870b8caed2df (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# A script to run Presentations.
ext="${@##*.}"
shopt -s nocasematch
case "$ext" in
"prs" ) /usr/share/smoffice2018/presentations -S\""$@"\";;
"pps" ) /usr/share/smoffice2018/presentations -S\""$@"\";;
"ppsx" ) /usr/share/smoffice2018/presentations -S\""$@"\";;
* ) /usr/share/smoffice2018/presentations "$@";;
esac
|