blob: 526dc8d78855c4f3aa8e887fa8503956268ed6fd (
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/office2021/presentations -S\""$@"\";;
"pps" ) /usr/share/office2021/presentations -S\""$@"\";;
"ppsx" ) /usr/share/office2021/presentations -S\""$@"\";;
* ) /usr/share/office2021/presentations "$@";;
esac
|