Help for this page

Select Code to Download


  1. or download this
    $ perl -e 'system("echo -e "\xFF\x08\x00" >> /dev/ttyACM0");'
    Backslash found where operator expected at -e line 1, near ""echo -e "
    +\"
    ...
    String found where operator expected at -e line 1, near "x00" >> /dev/
    +ttyACM0""
    syntax error at -e line 1, near ""echo -e "\"
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    $ perl -e 'system q{echo -e "\xFF\x08\x00" >> /dev/ttyACM0};'
    sh: /dev/ttyACM0: Permission denied
    
  3. or download this
    $ perl -e 'system q{echo -e "\xFF\x08\x00" >> ~/foo };'
    $  cat ~/foo
    -e �
    $
    
  4. or download this
    # perl -e 'system q{echo -e "\xFF\x08\x00" >> ~/foo };'
    # cat ~/foo
    �
    #