Results 1 - 25 of about 100 results out of about 96680 pages. (0.16 seconds)

set-o-vi-emacs . . . 1 match
...ursor position (saved for pasting) * p Paste text that was deleted * j Move up through history commands * k Move down through history commands * u Undo ---- CategoryShell...

2.2k - rev: 4 (current) last modified: 2022-01-19 04:01:49

glob . . . 1 match
...sematch]] operates on matches in ''[[BashGuide/TestsAndConditionals#Conditional_Blocks|[[]]'' and ''[[BashGuide/TestsAndConditionals#Choices|case]]'' commands. ---- CategoryShell...

17.3k - rev: 59 (current) last modified: 2022-10-13 13:52:20

WrapperScript . . . 1 match
...cess in the chain. Finally, if we got this far, `qmail-smtpd` actually receives an email from the sender and puts it in the queue for processing. ---- CategoryShell CategoryUnix...

5.1k - rev: 12 (current) last modified: 2021-12-02 12:26:10

WordSplitting . . . 1 match
... in `IFS=": " read -r var <<< "input : "`). Quoting is irrelevant here, though this behavior can be disabled by emptying IFS, typically with `IFS= read -r var` ---- CategoryShell...

8.7k - rev: 14 (current) last modified: 2023-09-21 06:22:37

UsingFind . . . 1 match
...for use after the loop, you can't do it that way. == Additional Reading == [[http://www.in-ulm.de/~mascheck/various/find/|Some Notes About Find]] ---- CategoryShell CategoryUnix...

36.4k - rev: 191 (current) last modified: 2019-05-17 14:26:29

TemplateFiles . . . 1 match
...be executed as shell code, it is important that any template file used in this way be under ''your'' control, and not generated by a user. You've been warned. ---- CategoryShell...

5.3k - rev: 16 (current) last modified: 2021-03-08 08:04:59

SubShell . . . 1 match
...a in the child shell"' }}} In the subshell, the regular shell variable `a` is visible; but because it is not exported, the full child process does not see it. ---- CategoryShell...

3.9k - rev: 9 (current) last modified: 2021-11-18 02:10:39

SignalTrap . . . 1 match
...to work that way in Bash, but works in Dash, when you trigger the signal by Ctrl-\. From the bash man page: {{{#!text In all cases, bash ignores SIGQUIT. }}} ---- CategoryShell...

11.7k - rev: 26 (current) last modified: 2023-09-21 20:57:38

ReplacingStrings . . . 1 match
...v s="${search//\\/\\\\}" -v r="${rep//\\/\\\\}" 'BEGIN {l=length(s)} {o="";while (i=index($0, s)) {o=o substr($0,1,i-1) r; $0=substr($0,i+l)} print o $0}' }}} ---- CategoryShell...

4.5k - rev: 4 (current) last modified: 2013-04-15 19:58:23

Redirection . . . 1 match
...l introduction. * The portable types of redirects are [[http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_07|specified by POSIX]] ---- CategoryShell...

1.3k - rev: 2 (current) last modified: 2023-07-19 20:56:29

Quotes . . . 1 match
...ymoire.com/Unix/Quote.html * http://wiki.bash-hackers.org/syntax/quoting * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02 ---- CategoryShell...

10.9k - rev: 32 (current) last modified: 2024-03-07 22:57:49

ProcessSubstitution . . . 1 match
...$!" printf 'Process substitution with pid %d exited with status %d\n' "$!" "$?" }}} == See Also == * http://wiki.bash-hackers.org/syntax/expansion/proc_subst ---- CategoryShell...

5.7k - rev: 25 (current) last modified: 2016-09-22 12:53:39

ProcessManagement . . . 1 match
... If not, then you may have to change how your FTP service runs, possibly moving it to a standalone daemon. This is a system administrator's job. ---- CategoryShell CategoryUnix...

46.6k - rev: 88 (current) last modified: 2023-08-09 06:29:52

ParsingLs . . . 1 match
...ut that one is not as safe as it produces output that is not always quoted or uses quoting operators that are not portable or unsafe when used in some locales. ---- CategoryShell...

13.8k - rev: 36 (current) last modified: 2023-08-12 13:05:09

NoClobber . . . 1 match
...using '>' redirection operator. {{{ set +o noclobber }}} '''List of pages in this category:''' <<FullSearchCached(category:NoClobber)>> ---- CategoryShell CategoryBashguide ...

1.1k - rev: 5 (current) last modified: 2012-09-27 12:53:11

NamedPipes . . . 1 match
...for data client: read <GO>, answering server: got answer: ACK server: sending GO to client client: waiting for data [...] }}} ---- CategoryShell CategoryUnix...

3.0k - rev: 8 (current) last modified: 2012-07-21 09:01:02

KornShell . . . 1 match
...nd precision. Bash only counts seconds and had no high-resolution timestamp mechanism until version 5.0 where $EPOCHSECONDS and $EPOCHREALTIME were introduced. ---- CategoryShell...

3.6k - rev: 23 (current) last modified: 2022-06-20 20:47:27

IFS . . . 1 match
...ther than using a temporary variable to suppress the word-splitting, as shown above. This is ''yet another reason'' why you should [[Quotes|USE MORE QUOTES]]! ---- CategoryShell...

6.4k - rev: 6 (current) last modified: 2023-05-22 10:17:31

HereDocument . . . 1 match
...nput ends. Rather, the `<<<` is followed by a single word ([[Quotes]] are your friend!). That word, plus a newline, become the standard input of the command. ---- CategoryShell...

2.4k - rev: 11 (current) last modified: 2020-04-24 02:48:22

FullBashFAQ . . . 1 match
...p://tiswww.case.edu/php/chet/bash/FAQ|Bash FAQ]] contains many technical questions not covered here. <<TableOfContents>> <<Include(^BashFAQ/.*, , editlink)>> ---- CategoryShell...

2.1k - rev: 3 (current) last modified: 2009-03-06 14:18:30

FileDescriptor . . . 1 match
...saved destinations using `1>&3 2>&4`, ''et voila''! Once the timed command has finished, we no longer need FDs 3 and 4, so we close them. And we're all done. ---- CategoryShell...

8.9k - rev: 4 (current) last modified: 2018-07-26 21:42:10

DotFiles . . . 1 match
...You may need to consult the documentation for your display manager program to find out which file(s) you should use for controlling your sessions. ---- CategoryShell CategoryUnix...

14.2k - rev: 41 (current) last modified: 2021-10-23 00:22:04

DontReadLinesWithFor . . . 1 match
...ame expansion. '''TODO:''' Write a "big picture" article which explains the theory and bundles all these pitfalls. Until then, read [[Arguments]], and [[IFS]] ---- CategoryShell...

3.3k - rev: 5 (current) last modified: 2016-12-07 22:21:19

ComplexOptionParsing . . . 1 match
... wtf:%s\\n "$opt" ;; esac done shift $((OPTIND-1)) printf \\nargs: printf '<%s>' "$@" echo } example -ad foo -b bar baz }}} ---- CategoryShell...

15.8k - rev: 19 (current) last modified: 2023-12-07 09:46:56

CommandSubstitution . . . 1 match
... `$(<file)` instead of `$(cat file)` is a [[Bashism]] that is slightly more efficient (doesn't require forking a `cat(1)` process) but obviously less portable. ---- CategoryShell...

3.7k - rev: 11 (current) last modified: 2015-11-12 10:59:10

1 2 3 4 Next