https://github.com/Suor/funcy - A fancy and practical functional tools Article
https://github.com/Suor/patterns - Pattern matching for python
https://github.com/kachayev/fn.py - Functional programming in Python: implementation of missing features to enjoy FP
Mar 29, 2013
Mar 26, 2013
ErlPort
ErlPort is a Python library which implements Erlang external term format and Erlang port protocol for easier integration of Erlang and Python.
Labels:
erlang
Mar 23, 2013
Mar 18, 2013
Mar 9, 2013
How can one run multiple programs in the background with single command?
The bash manpage section titled Compound Commands has two options that would work, list and group commands.
A group command is a series of commands enclosed in curly braces {}. A list is the same, enclosed in parentheses (). Both can be used to background multiple commands within, and finally to background the entire collection as a set. The list construct executes commands in a subshell, so variable assignments are not preserved.
To execute a group of commands:
You can also execute your commands in a list (subshell):
Note that the list () syntax executes the enclosed commands in a subshell, so variables are not preserved within.
A group command is a series of commands enclosed in curly braces {}. A list is the same, enclosed in parentheses (). Both can be used to background multiple commands within, and finally to background the entire collection as a set. The list construct executes commands in a subshell, so variable assignments are not preserved.
To execute a group of commands:
{ command1 & command2 & } &
You can also execute your commands in a list (subshell):
( command1 & command2 ) &
Note that the list () syntax executes the enclosed commands in a subshell, so variables are not preserved within.
Labels:
background,
bash,
multiple programs,
subshell
Mar 6, 2013
Mar 4, 2013
Linux From Scratch Book
Linux From Scratch (LFS) is a project that provides you with step-by-step instructions for building your own customized Linux system entirely from source.
http://www.linuxfromscratch.org/lfs/
http://www.linuxfromscratch.org/lfs/downloads/stable/
http://www.linuxfromscratch.org/lfs/
http://www.linuxfromscratch.org/lfs/downloads/stable/
Subscribe to:
Posts (Atom)