Help for this page

Select Code to Download


  1. or download this
    /tmp>echo 'echo Hello from the shell' > demo
    /tmp>chmod +x demo
    ...
    /tmp>./demo
    -bash: ./demo: Permission denied
    /tmp>
    
  2. or download this
    /tmp>echo '#!/tmp/defrag.exe' > demo
    /tmp>echo 'echo Hello from the shell' >> demo
    ...
    /tmp>./defrag.exe
    -bash: ./defrag.exe: cannot execute binary file: Exec format error
    /tmp>