summarylogtreecommitdiffstats
path: root/presentations16
blob: 420a55899c0b1a61abef3b670d4f876e67634d43 (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" ) /opt/smoffice2016/presentations -S\""$@"\";;
	"pps" ) /opt/smoffice2016/presentations -S\""$@"\";;
	"ppsx" ) /opt/smoffice2016/presentations -S\""$@"\";;
	* ) /opt/smoffice2016/presentations "$@";;
esac