summaryrefslogtreecommitdiff
path: root/filebrowser/filebrow.sh
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2016-11-21 03:08:58 -0600
committerepoch <epoch@hacking.allowed.org>2016-11-21 03:08:58 -0600
commitdcc04cba2446a7bfe8af8268229f3ca28e228b13 (patch)
tree8d441104cb47dc719aec20b97bdee70a70b9d4a7 /filebrowser/filebrow.sh
parent2ca9aa1c7fc8e39743e8aa8a2b715773657d3842 (diff)
downloadhackvr-dcc04cba2446a7bfe8af8268229f3ca28e228b13.tar.gz
hackvr-dcc04cba2446a7bfe8af8268229f3ca28e228b13.zip
added an example use of hackvr with the filebrowser dir.
updated a bunch of stuff in hackvr needed to that that filebrowser working. added a multicast example what uses mcast program in my misc repo. updated obj2hackvr to require a filename as argument instead of using stdin
Diffstat (limited to 'filebrowser/filebrow.sh')
-rwxr-xr-xfilebrowser/filebrow.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/filebrowser/filebrow.sh b/filebrowser/filebrow.sh
new file mode 100755
index 0000000..ef6911a
--- /dev/null
+++ b/filebrowser/filebrow.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+#give a list of files.
+#wait for a selection on stdin
+#cd or start that file
+#repeat.
+while true;do
+ echo
+ echo .* * | tr ' ' '\n'
+ read -r selection
+ if [ -f "$selection" ];then
+ xdg-open "$selection" #good enough?
+ fi
+ if [ -d "$selection" ];then
+ cd "$selection"
+ fi
+done