775 snippets from 1604 members, and growing!
|
login
|
join
about
bytebin
members
tags
snippets
join
Snippets
Submit a Snippet
Search Snippets
New Snippets
Top Snippets
Top Tags
PHP
(138)
JavaScript
(125)
Java
(66)
VBSCRIPT
(58)
String
(44)
CSS
(31)
CSharp
(28)
File
(28)
HTML
(27)
mysql
(25)
C
(24)
VB.NET
(24)
python
(24)
CPlusPlus
(23)
groovy
(23)
New Snippets
Shell keepalive t...
Clean PHP Templat...
PHP/MySQL impleme...
Analyte - Easy to...
Easy SQLite inter...
Very lightweight ...
AutoComplete plug...
AutoComplete plug...
Connection Java -...
View PostgreSql
Venture Capital Jobs
New Members
KennethCC
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
Top Members
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
Home
/
Snippets
/
Fast Bash Math
/
Comments
Fast Bash Math
Snippet Menu
Revisions
Comments
Related Snippets
Add to Favorites
Email Snippet
Download Snippet
Print Snippet
Blog Snippet
snippet
|
revisions
|
comments
|
related
|
Add to Favorites
|
email
download
|
print
|
blog it
New Comment
correction
Tue. Aug. 14th, 2007 9:10 AM
jbachman
sum=$(echo "scale=3; "2 * ( 4 + 4 ) / 4" | bc)
This line does not execute and should read:
sum=$(echo "scale=3; 2 * ( 4 + 4 ) / 4" | bc)
Reply
mkfifo - any sideeffects?
Sun. Aug. 19th, 2007 3:54 PM
nhed
I like this - but is there no way to do this without the creating fifos in the file system?
Should the fifos be removed on exit?
Reply
New Comment
This line does not execute and should read:
sum=$(echo "scale=3; 2 * ( 4 + 4 ) / 4" | bc)
Should the fifos be removed on exit?