Select the types of activity you want to include in your feed.
Simple globbing support
Using glob(3) this adds simple glob support. I'm sure this isn't sufficient for all of the pattern-matching that is possible in POSIX shell's, but it is a good start.
···11+Here we test some specific semantics of how a shell should handle paths. In
22+particular, things like globbing.
33+44+ $ touch hello.txt; touch world.txt
55+ $ osh -c "basename --suffix='.txt' *.txt"
66+ hello
77+ world
88+ $ touch Hello.txt
99+ $ osh -c "basename --suffix='.txt' ?ello.txt"
1010+ Hello
1111+ hello