blob: 9cbf11a14716113b18cab27b691e7522a68b8b6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
#give a list of files.
#wait for a selection on stdin
#cd or start that file
#repeat.
while true;do
#not sure why this needs to be printed to show up every time.
echo ..
echo ..
find . -maxdepth 1 #| tr ' ' '\n' #wut? no?
read -r selection
if [ -f "$selection" ];then
xdg-open "$selection" #good enough?
fi
if [ -d "$selection" ];then
cd "$selection"
fi
echo
done
|