10 Matching Annotations
- Feb 2024
-
github.com github.com
-
open in editor
Tags
Annotators
URL
-
- Nov 2022
-
unix.stackexchange.com unix.stackexchange.com
-
And get a list of characters in a font like this:
-
- Jul 2022
-
stackoverflow.com stackoverflow.com
-
So the correct command to use is findmnt, which is itself part of the util-linux package and, according to the manual: is able to search in /etc/fstab, /etc/mtab or /proc/self/mountinfo
-
- Apr 2021
-
stackoverflow.com stackoverflow.com
-
If there are some pipe between these commands, you need to flush stdout. for example: script -q /dev/null commands... | ruby -ne 'print "....\n";STDOUT.flush'
-
-
linusakesson.net linusakesson.net
-
Job control is what happens when you press ^Z to suspend a program, or when you start a program in the background using &
-
- Feb 2021
-
stackoverflow.com stackoverflow.com
-
For example, on the terminal I'm using, the right arrow outputs ^[[C. You can see what sequence your terminal outputs by pressing Ctrl-V Right Arrow. The same is true for other cursor-control keys such as Page Up and End.
-
-
stackoverflow.com stackoverflow.com
-
As usual with almost any command, if you want a normal argument that starts with a - to not be interpreted as a switch, precede it with --
-
- Nov 2020
-
unix.stackexchange.com unix.stackexchange.com
-
rsync --info=progress2
-
- Jan 2020
-
project.cyberpunk.ru project.cyberpunk.ru
-
In the Beginning was the Command Line -- Neal Stephenson
-
- Nov 2017
-
timmurphy.org timmurphy.org
-
In Bash you quite often need to check to see if a variable has been set or has a value other than an empty string. This can be done using the -n or -z string comparison operators.
Two most useful commands in bash
-