Results 76 - 100 of about 100 results out of about 3209 pages. (0.17 seconds)

BashFAQ/014 . . . 1 match
...[[http://wiki.bash-hackers.org/syntax/redirection|More discussion]] [[http://wiki.bash-hackers.org/howto/redirection_tutorial|In-depth: Illustrated Tutorial]] ---- CategoryShell...

1.5k - rev: 11 (current) last modified: 2015-03-05 00:29:41

BashFAQ/013 . . . 1 match
...ou may see from time to time: {{{#!highlight bash string+=" more data here" # EXTREMELY non-portable! }}} It's generally best to use the portable syntax. ---- CategoryShell...

1.6k - rev: 10 (current) last modified: 2018-07-06 10:01:46

BashFAQ/012 . . . 1 match
...bash }}} Care must be taken when writing a script to send through ssh. [[BashFAQ/096|Ssh works like eval]], with the same concerns; see that FAQ for details. ---- CategoryShell...

4.4k - rev: 12 (current) last modified: 2019-06-06 17:29:00

BashFAQ/010 . . . 1 match
...; done' sh {} + }}} If your `find` can't handle `-exec +` then you can use `\;` instead of `+` at the end of the command. See [[UsingFind]] for explanations. ---- CategoryShell...

3.1k - rev: 35 (current) last modified: 2023-09-22 06:29:48

BashFAQ/009 . . . 1 match
..., they might be trying to do something which would benefit from coprocesses. ==== Further reading ==== * http://www.pixelbeat.org/programming/stdio_buffering ---- CategoryShell...

6.0k - rev: 37 (current) last modified: 2024-03-07 20:19:09

BashFAQ/008 . . . 1 match
..." }}} The {{{-print0}}} / {{{-0}}} options ensure that any file name can be processed, even one containing [[BashFAQ/020|blanks, TAB characters, or newlines]]. ---- CategoryShell...

1.8k - rev: 14 (current) last modified: 2015-03-05 00:24:46

BashFAQ/007 . . . 1 match
...}" }}} Expands to the number of elements in an array. {{{#!highlight bash # Korn/Bash "${#arrayname[i]}" }}} Expands to the length of the array's element i. ---- CategoryShell...

1.5k - rev: 16 (current) last modified: 2015-03-05 00:24:26

BashFAQ/006 . . . 1 match
...ist.github.com/ormaaj/5682807 | Bash vs Mksh vs ksh93 namerefs]] * [[BashFAQ/005]] * [[BashGuide/Arrays]] * [[BashSheet#Arrays|BashSheet Array reference]] ---- CategoryShell...

16.8k - rev: 63 (current) last modified: 2023-04-14 06:52:11

BashFAQ/005 . . . 1 match
...ion]] * [[BashGuide/Arrays]] * [[BashSheet#Arrays|BashSheet Array reference]] * [[BashFAQ/006#Associative_Arrays|BashFAQ 6 - explaining associative arrays]] ---- CategoryShell...

19.7k - rev: 77 (current) last modified: 2023-03-25 22:39:06

BashFAQ/004 . . . 1 match
...org/gmane.comp.standards.posix.austin.general/2058]], which contains some good discussion.)>>: {{{#!highlight bash # ksh93 for f in ~(N)*; do .... done }}} ---- CategoryShell...

8.4k - rev: 50 (current) last modified: 2023-03-28 07:52:15

BashFAQ/003 . . . 1 match
... Readers who are asking this question in order to rotate their log files may wish to look into `logrotate(1)` instead, if their operating system provides it. ---- CategoryShell...

3.7k - rev: 23 (current) last modified: 2024-05-02 19:47:41

BashFAQ/002 . . . 1 match
...inal question read, "How can I store the return value of a command in a variable?" This was, verbatim, an actual question asked in #bash, ambiguity and all.'' ---- CategoryShell...

7.7k - rev: 50 (current) last modified: 2023-05-11 13:36:34

BashFAQ/001 . . . 1 match
...n't. Other commands that act this way include `ssh` and `ffmpeg`. Additional workarounds for this are discussed in [[BashFAQ/089|FAQ #89]]. ---- CategoryShell CategoryBashguide...

9.8k - rev: 72 (current) last modified: 2023-06-28 01:53:29

BashFAQ . . . 1 match
...e.edu/php/chet/bash/FAQ|Bash FAQ]] contains many technical questions not covered here. <<TableOfContents>> <<Include(^BashFAQ/[0-9]*$, , to="^$", editlink)>> ---- CategoryShell...

2.3k - rev: 393 (current) last modified: 2021-05-27 20:31:17

BashBenchmark . . . 1 match
... || || 0m0.217s || {{{time bash -c ':' -- {1..10000} }}} || Bash takes longer to boot with a long argument list but `set --` is just as fast as the others. || ---- CategoryShell...

3.6k - rev: 18 (current) last modified: 2012-05-22 06:01:31

BASH . . . 1 match
... Bash is intended to be a conformant implementation of the IEEE POSIX Shell and Tools specification (IEEE Working Group 1003.2). === See Also === [[Bashism]] ---- CategoryShell...

0.6k - rev: 38 (current) last modified: 2021-10-23 02:22:53

ArithmeticExpression . . . 1 match
...oes not''' store numbers in binary form. They are still stored as strings, with string/integer conversions happening on the fly every time arithmetic is done. ---- CategoryShell...

11.1k - rev: 37 (current) last modified: 2023-12-11 16:33:33

Arguments . . . 1 match
...ou cannot properly quote the arguments. Use a function instead: {{{ search() { cd /foo || return 1; find . -name "$1"; } search '*.pdf'; search '*.jpg' }}} ---- CategoryShell...

17.5k - rev: 30 (current) last modified: 2024-06-03 03:52:03

Previous 1 2 3 4