summarylogtreecommitdiffstats
path: root/presentations24
blob: 919b58e406e283193f22303722fdf1acd47933a5 (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/office2024/presentations -S\""$@"\";;
	"pps" ) /usr/share/office2024/presentations -S\""$@"\";;
	"ppsx" ) /usr/share/office2024/presentations -S\""$@"\";;
	* ) /usr/share/office2024/presentations "$@";;
esac