Linux: Bash: Get text between brackets 3
awk 'NR>1{print $1}' RS='(' FS=')'
awk 'NR>1{print $1}' RS='(' FS=')'
Where the noble, semi-skilled laborers execute the vision of those who think and dream. Hello, Oompa Loompas of science!
— Sheldon Cooper, The Big Bang Theory
dd if=/dev/zero of=1MBfile bs=1024 count=$((1 * 1024))
The above command will create an empty file named “1MBfile” which is 1 MegaByte large.
Name is defined at the “of” parameter. Size is defined by the number of blocks (variable “count”) times the size of each block (defined by “bs”).
In this example, we have 1024 blocks of 1024 bytes size each.
kill -9 $$
Kills the hosting terminal without allowing it to perform shutdown sequence (like updating history file)