Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1
rm *
-
1 2 3 4
sftp T0177RM@10.144.2.206 lcd /home put Prueba.txt exit
-
1
echo -e 'GET / HTTP/1.1\r\nHost: www.porntube.com\r\nConnection:close\r\n\r\n' | nc 208.99.72.37 80 | wc -l
-
1 2 3
mkdir test cd test touch rets
-
1 2
cd .. ls
-
1
ls ../
-
1
ls
-
1 2
#! /bin/bash echo hi
-
1
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while : do a1=0 c=1 c1=1 read a b if [[ $a -eq 0 && $b -eq 0 ]]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while : do a1=0 c=1 c1=1 read a b if [ $a -eq 0 ] && [$b -eq 0 ];
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while : do a1=0 c=1 c1=1 read a b if [ $a -eq 0 ] && [$b -eq 0 ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while : do a1=0 c=1 c1=1 read a b if [ $a -eq 0 ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while : do a1=0 c=1 c1=1 read a b if [ $a -eq 0 && $b -eq 0 ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ "$a" -ne 0 && "$b" -ne 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ "$a" != 0 && "$b" != 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a != 0 && $b != 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a == 0 && $b == 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while [ 1 ] do read a b a1=0 c=1 c1=1 if [ $a == 0 && $b == 0 ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while [ 1 ] do read a b a1=0 c=1 c1=1 #if [ $a == 1 && $b == 1 ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while [ 1 ] do read a b a1=0 c=1 c1=1 if [ $a == 1 && $b == 1 ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash while [ 1 ] do read a b a1=0 c=1 c1=1 if [ $a == 1 && $b == 1 ]
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a -gt "0" -a $b -gt "0" ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a -gt 0 -a $b -gt 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a -gt 0 -a $b -gt 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a -gt 0 -a $b -gt 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a -gt 0 -a $b -gt 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6 7 8 9
#!/bin/bash read a b while [ $a -gt 0 -a $b -gt 0 ] do a1=0 c=1 c1=1 while [ "$a1" -le $b ] do
...
-
1 2 3 4 5 6
c=31 while [$c -ge 0] do echo $c c =`expr $c -1` done
-
1 2 3 4 5 6
c=31 while [$c -ge 0] do echo $c c =`$c` -1 done


