presentations18 318 B

1234567891011
  1. #!/bin/sh
  2. # A script to run Presentations.
  3. ext="${@##*.}"
  4. shopt -s nocasematch
  5. case "$ext" in
  6. "prs" ) /opt/smoffice2018/presentations -S\""$@"\";;
  7. "pps" ) /opt/smoffice2018/presentations -S\""$@"\";;
  8. "ppsx" ) /opt/smoffice2018/presentations -S\""$@"\";;
  9. * ) /opt/smoffice2018/presentations "$@";;
  10. esac