root@dcLunatic:~# bc bc 1.07.1 Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006, 2008, 2012-2017 Free Software Foundation, Inc. This is free software with ABSOLUTELY NO WARRANTY. For details type `warranty'. 3+2 5 5*2 10 98/12 8 34 % 3 1
root@dcLunatic:~# bc calc.txt bc 1.07.1 Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006, 2008, 2012-2017 Free Software Foundation, Inc. This is free software with ABSOLUTELY NO WARRANTY. For details type `warranty'. 6 223 41 112 0 1.10000000
注: 使用quit或Ctrl+D或者直接Ctrl+C都可以退出bc命令。
管道使用bc
1 2 3 4 5 6 7 8 9 10 11
root@dcLunatic:~# echo "1+2" | bc 3 root@dcLunatic:~# echo "(3*7)*3.2;23*23" | bc 67.2 529 root@dcLunatic:~# echo "obase=16;34"|bc 22 root@dcLunatic:~# echo "sqrt(7)" | bc 2 root@dcLunatic:~# echo "scale=4;sqrt(8)" | bc 2.8284