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 2 3 4 5 6
$ echo "Hello, $LOGNAME" echo "Current date is `date`" echo "User is `who i am`" echo "Current direcotry `pwd`" $
-
1 2 3 4 5
$ echo "Hello!" echo "To list out the directory: $(ls)" echo "Thank U Folks!" $
-
1 2 3 4 5
$ echo "Greetings! Welcome to UNIX/LINUX system" echo "To know the System's Processes is: $(ps -aux)" echo "To know who logged on: $(who -H)" $
-
1 2 3 4 5
$ echo "Welcome to unix environment" echo "The current date is: $(date)" echo "The current working month is: $(cal)" $
-
1 2 3 4 5
$ echo "This is the basic unix file system environment" echo "Your Current Working Directory is: $(pwd)" echo "Your Current Working Month is: $(cal)" $
-
1
man mv;
-
1
man cd;
-
1
ls /etc
-
1 2 3 4
ls pwd uptime uname -a
-
1
ls|cat -vte;
-
1
ls;pwd;man cat;
-
1 2 3 4 5 6 7 8 9
#/bin/bash #/bin/bash #* #* This program is free software; you can redistribute it and/or modify #* it under the terms of the GNU General Public License as published by #* the Free Software Foundation; either version 2 of the License, or #* (at your option) any later version. #* #* This program is distributed in the hope that it will be useful,
...
-
1 2 3 4 5
#!/bin/bash for a in jeden dwa trzy cztery piec echo "to jest napis numer" $a done
-
1 2 3 4 5
#!/bin/bash for a in jeden dwa trzy cztery piec echo "to jest napis numer" $a done
-
1 2 3 4 5
#!/bin/bash for a in jeden dwa trzy cztery piec echo "to jest napis numer $a" done
-
1 2 3 4 5
#!/bin/bash for a in jeden dwa trzy cztery piec echo "to jest napis numer $a" done
-
1 2 3 4 5 6
#!/bin/bash read a for a in jeden dwa trzy cztery piec echo "to jest napis numer $a" done
-
1 2 3 4 5 6
#!/bin/bash read a for a in jeden dwa trzy cztery piec echo "to jest napis numer $a" done
-
1 2 3 4 5 6
#!/bin/bash echo "podaj swoja ocene (cyfra)" read a for a in niedostateczny dopuszczajacy dostateczny dobry bdobry celujacy echo "mogles dostac $a+1" done
-
1 2 3 4 5 6
#!/bin/bash echo "podaj swoja ocene (cyfra)" read a for a in niedostateczny dopuszczajacy dostateczny dobry bdobry celujacy echo "mogles dostac $a+1" done
-
1 2 3 4 5 6
#!/bin/bash echo "podaj swoja ocene (cyfra) read a for a in niedostateczny dopuszczajacy dostateczny dobry bdobry celujacy echo "mogles dostac $a+1" done
-
1 2 3 4 5
#!/bin/bash for x in jeden dwa trzy do echo "To jest $x" done
-
1 2 3 4 5 6 7
#!/bin/bash read a while [ $a -le 20 ]; do echo $a a=$[ a + 1 ] done
-
1 2 3 4 5 6 7
#!/bin/bash read a while [ $a -le 20 ]; do echo $a a=$[ a + 1 ] done
-
1 2 3 4 5 6
#!/bin/bash read x while [ $x -le 10 ]; do echo "Napis pojawił się po raz: $x" x=$[x + 1] done
-
1 2 3 4 5 6
#!/bin/bash read x while [ $x -le 10 ]; do echo "Napis pojawił się po raz: $x" x=$[x + 1] done
-
1 2 3 4 5 6
#!/bin/bash x=1; while [ $x -le 10 ]; do echo "Napis pojawił się po raz: $x" x=$[x + 1] done
-
1 2 3 4 5 6
#!bin/bash read a while [ $a -le 10 ]; do echo $a a=$[ a + 1 ] done
-
1 2 3 4 5 6
#!bin/bash read a while [ a -le 10 ]; do echo $a a=$[ a + 1 ] done
-
1 2 3 4 5 6
#!bin/bash read a while [ a -le 10 ] do echo $a a=$[ a + 1 ] done


