Pipe to awk '{s+=$1} END {print s}'
or paste -s -d+ - | bc
(here paste
joins the numbers into one line)
{
extends the selection until the next empty line
- Start recording:
q
+ a letter, saym
- Finish recording:
q
- Run macro:
@
+m
- Re-run macro:
@
+@
Shift
+click
a word to show all occurences
Char Code Description
--- ---- -----------
— 2014 Em dash
… 2026 Horizontal ellipsis
⋮ 22EE Vertical ellipsis
→ 2192 Right arrow
In Vim (insert mode): Ctrl-v
+ u
+ the code. E.g. Ctrl-v
+ u2026
for ellipsis.
Elsewhere: Ctrl-Shift-u, enter the code, hit space.
When a child process terminates, a SIGCHLD
signal is sent to its parent. The kernel retains the child process with its exit status so that the parent can retrieve it by calling wait()
on it. While that doesn't occur, the child is a zombie process.
By default, SIGCHLD
signals are ignored.
TODO: add sample code
gdb app-binary path-to-core-dmp
(gdb) bt
$ sudo yum install gtk3-devel
static_cast
: general purpose, equivalent to the C-style cast; at compile-timeconst_cast
: casts awayconst
andvolatile
; at run-timedynamic_cast
: safe cast across the inheritance hierarchy (prevents incorrect downcasting); at run-timereinterpret_cast
: convertsint
s to and from pointers and any pointer type to and from any pointer type. Unsafe and unportable. (compile-time)