projects
/
cmccabe-bin
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
34c46a2
)
Add an open command
author
Colin P. McCabe
<cmccabe@apache.org>
Sun, 29 Dec 2024 22:28:16 +0000 (14:28 -0800)
committer
Colin P. McCabe
<cmccabe@apache.org>
Sun, 29 Dec 2024 22:29:07 +0000 (14:29 -0800)
open
[new file with mode: 0755]
patch
|
blob
diff --git a/open
b/open
new file mode 100755
(executable)
index 0000000..
dd6be3d
--- /dev/null
+++ b/
open
@@ -0,0
+1,11
@@
+#!/usr/bin/env bash
+
+for f in "$@"; do
+ lowercased=`echo "$f" | sed 's/./\L&/g'`
+ case $lowercased in
+ *.pdf)
+ setsid nohup evince "${f}" > /dev/null 2> /dev/null;;
+ *)
+ setsid nohup xdg-open "${f}" > /dev/null 2> /dev/null;;
+ esac
+done