Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 237 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 237 Bytes

README

Demonstrate a restricted bash shell

Examples

# open a restricted bash shell
bash -r 

Restricted

# can't do this
cd ..
# can't do this either
TEMPFILE=$(mktemp)
echo "HELLO" >  $TEMPFILE