Results 26 - 50 of about 100 results out of about 3363 pages. (0.13 seconds)

CategoryCategory . . . 1 match
...## Please edit system and help pages ONLY in the master wiki! ## For more information, please see MoinMoin:MoinDev/Translation. ##master-page:Unknown-Page ##master-date:Unknown-Dat...

0.8k - rev: 1 (current) last modified: 0

BraceExpansion . . . 1 match
.../Patterns#Brace_Expansion|Bash guide]] * [[https://web.archive.org/web/20220408004618/https://wiki.bash-hackers.org/syntax/expansion/brace|Bash-hackers wiki]] ---- CategoryShell...

2.9k - rev: 7 (current) last modified: 2024-05-02 11:18:19

BourneShell . . . 1 match
...e symbol (|). This was taken over from the predecessor, the Thompson shell, which is the reason why modern shells certainly never implemented it. ---- CategoryShell CategoryUnix...

3.0k - rev: 7 (current) last modified: 2014-01-22 19:03:58

Bashism . . . 1 match
...[[http://www.etalabs.net/sh_tricks.html|Rich's sh tricks]] has some clever yet surprisingly powerful hacks for dealing with the limitations of the POSIX shell. ---- CategoryShell...

12.5k - rev: 93 (current) last modified: 2022-10-20 23:13:29

BashWeaknesses . . . 1 match
...more attention than normal to every single good practice rule and uphold a consistent style throughout the entire code to avoid ''too'' much headache later on. ---- CategoryShell...

9.4k - rev: 30 (current) last modified: 2022-09-01 18:14:07

BashToolbox . . . 1 match
...eue[0]}" || return IFS= read -r -d '' <&"${_queue[0]}" printf %s "$REPLY" } # _____________________________________________________________________ }}} ---- CategoryShell...

2.4k - rev: 4 (current) last modified: 2024-05-04 12:56:47

BashSyntaxReference . . . 1 match
...''var''`//`''search''`/`''replace''`}`||`x=${x//foo/bar}`||Expands to the value of ''var'' with all instances of ''search'' (a glob) replaced by ''replace''.|| ---- CategoryShell...

25.0k - rev: 27 (current) last modified: 2024-03-28 14:54:08

BashSheet . . . 1 match
...ut to standard error from now on to a log file'''. * `echo "Fatal error occurred! Terminating!"; exit 1` . '''Show an error message and exit the script'''. ---- CategoryShell...

54.2k - rev: 91 (current) last modified: 2021-12-20 04:19:50

BashProgramming/06 . . . 1 match
... The second allows far more flexibility. ---- <- [[../05|Avoiding code injection]] | '''Data structures''' | [[../Ex01|Example 1: Modifying a config file]] -> ---- CategoryShell...

8.7k - rev: 4 (current) last modified: 2023-01-04 16:56:55

BashProgramming . . . 1 match
...le: {{{ foo() { ...; } export -f foo find . -type f -exec bash -c 'for f; do foo "$f"; done' x {} + }}} ---- '''Basic concepts''' | [[/02|Tool selection]] -> ---- CategoryShell...

20.2k - rev: 23 (current) last modified: 2023-01-04 04:29:47

BashPitfalls . . . 1 match
...oo}> file`, `> "$BASHPID"`, `< "${foo=bar}"`, or `(cmd1 & cmd2 & wait) > >(...)`. Also see https://www.vidarholen.net/contents/blog/?p=865. ---- CategoryShell CategoryBashguide...

86.2k - rev: 572 (current) last modified: 2024-04-04 23:09:24

BashParser . . . 1 match
...ts''). That means that `$name` is not safe from having its result cut up, because the cutting up happens after `$name` is replaced by the value within `name`. ---- CategoryShell...

10.0k - rev: 15 (current) last modified: 2017-10-10 14:25:02

BashLoadableBuiltins . . . 1 match
...nd at: * http://cfajohnson.com/shell/bash/loadables/ * https://web.archive.org/web/20160303032434/http://cfajohnson.com/shell/articles/dynamically-loadable/ ---- CategoryShell...

1.1k - rev: 7 (current) last modified: 2020-04-25 02:18:36

BashGuide . . . 1 match
...ntrol]] * [[/Practices|Practices]] * Choosing your shell; quoting; readability; debugging. ---- [[BashGuide/CommandsAndArguments|Commands and Arguments ->]] ---- CategoryShell...

8.1k - rev: 170 (current) last modified: 2021-05-27 20:29:49

BashFAQ/111 . . . 1 match
...186&tbm=nws|Search Google News for 'CVE-2014-7186']] * [[https://www.google.com/webhp?tbm=nws#q=CVE-2014-7187&tbm=nws|Search Google News for 'CVE-2014-7187']] ---- CategoryShell...

6.8k - rev: 18 (current) last modified: 2014-10-09 20:04:09

BashFAQ/103 . . . 1 match
...e was not last modified in Januari 2010 $ inTime file 1945-2010 && echo "file was last modified after The War" file was last modified after The War }}} ---- CategoryShell...

2.5k - rev: 7 (current) last modified: 2015-09-28 19:14:05

BashFAQ/101 . . . 1 match
...case $2 in *[^0-9]*|'') :;; *) st=$2;; esac warn "$1" exit "$st" } }}} Since it's your script, you get to decide how fancy you want to make it. ---- CategoryShell...

2.4k - rev: 25 (current) last modified: 2020-02-04 18:35:41

BashFAQ/100 . . . 1 match
...retend [[BashFAQ/105|set -e]] and [[BashFAQ/112|set -u]] don't exist. === See Also === [[BashFAQ/073|Parameter expansion]] (terse version, with handy tables). ---- CategoryShell...

24.3k - rev: 47 (current) last modified: 2023-06-26 10:03:19

BashFAQ/084 . . . 1 match
...e example of a recursive function. fact() { if (($1 <= 1)); then r=1 else fact "$(($1 - 1))" ((r *= $1)) fi } fact 11 echo "$r" }}} ---- CategoryShell...

5.0k - rev: 20 (current) last modified: 2022-11-14 19:36:10

BashFAQ/066 . . . 1 match
... [[ $var == !(!(foo)|!(bar)|!(more)) ]] && ... }}} But this is quite unclear and not much shorter than just writing out separate expressions for each pattern. ---- CategoryShell...

1.7k - rev: 16 (current) last modified: 2022-11-23 19:29:49

BashFAQ/050 . . . 1 match
...rite out meaningful (possibly even date-stamped) lines describing what you're doing. {{{ echo "Populating database table" mysql -u me -p somedbname < file }}} ---- CategoryShell...

11.6k - rev: 61 (current) last modified: 2024-04-15 23:48:57

BashFAQ/049 . . . 1 match
...}}} Every invocation of this gives the update to the file from where we stopped last. If you know the line number from where you want to start, set n to that. ---- CategoryShell...

0.7k - rev: 3 (current) last modified: 2010-06-25 20:17:30

BashFAQ/048 . . . 1 match
... to populate variables indirectly '''with''' `eval`, please see [[BashFAQ/006#eval]]. * [[http://wiki.bash-hackers.org/commands/builtin/eval | More examples]] ---- CategoryShell...

13.0k - rev: 36 (current) last modified: 2024-03-28 15:00:50

BashFAQ/047 . . . 1 match
...[http://wiki.bash-hackers.org/howto/redirection_tutorial|redirection tutorial]] (with an example that redirects stdout to one pipe and stderr to another pipe). ---- CategoryShell...

3.3k - rev: 17 (current) last modified: 2012-03-05 11:30:04

BashFAQ/046 . . . 1 match
...peset -a '[colors]' bar $ bar[blue]=test1 $ typeset -p bar typeset -a '[colors]' bar=([blue]=test) $ bar[orange]=test ksh: colors: invalid value orange }}} ---- CategoryShell...

2.0k - rev: 20 (current) last modified: 2023-04-29 04:33:04

Previous 1 2 3 4 Next