fork(1) download
  1. #!/bin/bash
  2. # your code goes here
  3.  
  4. builtin() {
  5. echo "Йопс 2!"
  6. }
  7.  
  8. unset() {
  9. echo "Йопс!"
  10. builtin unset $1
  11. }
  12.  
  13. UNIX95="qwerty"
  14.  
  15. (
  16. if [ ! -z "$UNIX95" ] ; then
  17. unset UNIX95
  18. echo $UNIX95
  19. fi
  20. )
Success #stdin #stdout 0.02s 5268KB
stdin
Standard input is empty
stdout
Йопс!
Йопс 2!
qwerty