Shells in OCaml
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at async 14 lines 227 B view raw
1Subshells! 2 3A simple test. 4 5 $ cat > test.md << EOF 6 > Just some text here 7 > EOF 8 $ osh -c "cat '$(echo test.md)'" 9 Just some text here 10 11 $ osh -c "'$(which echo)' hello" 12 hello 13 $ osh -c "`which echo` hello" 14 hello