ROOT/root/.bashrc
changeset 1 8ff135ba3a93
child 6 10f684acb314
equal deleted inserted replaced
0:cf3d12913a16 1:8ff135ba3a93
       
     1 function ro() { mount -o remount,ro /; }
       
     2 function rw() {
       
     3         mount -o remount,rw /
       
     4         test "$#" = 0 && return;
       
     5         "$@"
       
     6         rc=$?
       
     7         ro
       
     8         return $rc
       
     9 }