-
Notifications
You must be signed in to change notification settings - Fork 0
/
corybekker.txt
13939 lines (12924 loc) · 770 KB
/
corybekker.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Script started on Mon Apr 25 10:28:09 2011
]0;cbekker@cwolf:~/cs210[?1034h[cbekker@cwolf cs210]$ cat> >man bash man bash
[?1049h[?1h=BASH(1) BASH(1)
[1mNAME[0m
bash - GNU Bourne-Again SHell
[1mSYNOPSIS[0m
[1mbash[0m [options] [file]
[1mCOPYRIGHT[0m
Bash is Copyright (C) 1989-2005 by the Free Software Foundation, Inc.
[1mDESCRIPTION[0m
[1mBash[0m is an [1msh[0m-compatible command language interpreter that executes commands read from the standard input or
from a file. [1mBash[0m also incorporates useful features from the [4mKorn[24m and [4mC[24m shells ([1mksh[0m and [1mcsh[0m).
[1mBash[0m is intended to be a conformant implementation of the Shell and Utilities portion of the IEEE POSIX speci-
fication (IEEE Standard 1003.1). [1mBash[0m can be configured to be POSIX-conformant by default.
[1mOPTIONS[0m
In addition to the single-character shell options documented in the description of the [1mset[0m builtin command,
[1mbash[0m interprets the following options when it is invoked:
[1m-c[0m [4mstring[24m If the [1m-c[0m option is present, then commands are read from [4mstring[24m. If there are arguments after the
[4mstring[24m, they are assigned to the positional parameters, starting with [1m$0[0m.
[1m-i[0m If the [1m-i[0m option is present, the shell is [4minteractive[24m.
[1m-l[0m Make [1mbash[0m act as if it had been invoked as a login shell (see [1mINVOCATION[0m below).
[1m-r[0m If the [1m-r[0m option is present, the shell becomes [4mrestricted[24m (see [1mRESTRICTED[0m [1mSHELL[0m below).
[1m-s[0m If the [1m-s[0m option is present, or if no arguments remain after option processing, then commands are
read from the standard input. This option allows the positional parameters to be set when invoking
an interactive shell.
[1m-D[0m A list of all double-quoted strings preceded by [1m$[0m is printed on the standard output. These are the
strings that are subject to language translation when the current locale is not [1mC[0m or [1mPOSIX[0m. This
implies the [1m-n[0m option; no commands will be executed.
[1m[-+]O[0m [1m[[0m[4mshopt_option[24m[1m][0m
[4mshopt_option[24m is one of the shell options accepted by the [1mshopt[0m builtin (see [1mSHELL[0m [1mBUILTIN[0m [1mCOMMANDS[0m
below). If [4mshopt_option[24m is present, [1m-O[0m sets the value of that option; [1m+O[0m unsets it. If [4mshopt_option[24m
is not supplied, the names and values of the shell options accepted by [1mshopt[0m are printed on the stan-
dard output. If the invocation option is [1m+O[0m, the output is displayed in a format that may be reused
as input.
[1m--[0m A [1m--[0m signals the end of options and disables further option processing. Any arguments after the [1m--[0m
are treated as filenames and arguments. An argument of [1m-[0m is equivalent to [1m--[0m.
[1mBash[0m also interprets a number of multi-character options. These options must appear on the command line before
the single-character options to be recognized.
[1m--debugger[0m
Arrange for the debugger profile to be executed before the shell starts. Turns on extended debugging
mode (see the description of the [1mextdebug[0m option to the [1mshopt[0m builtin below) and shell function tracing
(see the description of the [1m-o[0m [1mfunctrace[0m option to the [1mset[0m builtin below).
[1m--dump-po-strings[0m
:[K[K [KESCESC[KOO[KBB[K Equivalent to [1m-D[0m, but the output is in the GNU [4mgettext[24m [1mpo[0m (portable object) file format.
:[K[K [KESCESC[KOO[KBB[K [1m--dump-strings[0m
:[K[K [KESCESC[KOO[KBB[K Equivalent to [1m-D[0m.
:[K[K [KESCESC[KOO[KBB[K [1m--help[0m Display a usage message on standard output and exit successfully.
:[K[K [KESCESC[KOO[KBB[K [1m--init-file[0m [4mfile[24m
:[K[K [KESCESC[KOO[KBB[K [1m--rcfile[0m [4mfile[24m
:[K[K [KESCESC[KOO[KBB[K Execute commands from [4mfile[24m instead of the standard personal initialization file [4m~/.bashrc[24m if the shell
:[K[K [KESCESC[KOO[KBB[K is interactive (see [1mINVOCATION[0m below).
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [1m--login[0m
:[K[K [KESCESC[KOO[KBB[K Equivalent to [1m-l[0m.
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [1m--noediting[0m
:[K[K [KESCESC[KOO[KBB[K Do not use the GNU [1mreadline[0m library to read command lines when the shell is interactive.
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [1m--noprofile[0m
:[K[K [KESCESC[KOO[KBB[K Do not read either the system-wide startup file [4m/etc/profile[24m or any of the personal initialization files
:[K[K [KESCESC[KOO[KBB[K [4m~/.bash_profile[24m, [4m~/.bash_login[24m, or [4m~/.profile[24m. By default, [1mbash[0m reads these files when it is invoked as
:[K[K [KESCESC[KOO[KBB[K a login shell (see [1mINVOCATION[0m below).
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [1m--norc[0m Do not read and execute the personal initialization file [4m~/.bashrc[24m if the shell is interactive. This
:[K[K [KESCESC[KOO[KBB[K option is on by default if the shell is invoked as [1msh[0m.
:[K[K [KESCESC[K[[[K66[K~~[K
[1m--posix[0m
Change the behavior of [1mbash[0m where the default operation differs from the POSIX standard to match the
standard ([4mposix[24m [4mmode[24m).
[1m--restricted[0m
The shell becomes restricted (see [1mRESTRICTED[0m [1mSHELL[0m below).
[1m--rpm-requires[0m
Produce the list of files that are required for the shell script to run. This implies '-n' and is sub-
ject to the same limitations as compile time error checking checking; Backticks, [] tests, and evals
are not parsed so some dependencies may be missed.
[1m--verbose[0m
Equivalent to [1m-v[0m.
[1m--version[0m
Show version information for this instance of [1mbash[0m on the standard output and exit successfully.
[1mARGUMENTS[0m
If arguments remain after option processing, and neither the [1m-c[0m nor the [1m-s[0m option has been supplied, the first
argument is assumed to be the name of a file containing shell commands. If [1mbash[0m is invoked in this fashion, [1m$0[0m
is set to the name of the file, and the positional parameters are set to the remaining arguments. [1mBash[0m reads
and executes commands from this file, then exits. [1mBash[0m's exit status is the exit status of the last command
executed in the script. If no commands are executed, the exit status is 0. An attempt is first made to open
the file in the current directory, and, if no file is found, then the shell searches the directories in [1mPATH[0m
for the script.
[1mINVOCATION[0m
A [4mlogin[24m [4mshell[24m is one whose first character of argument zero is a [1m-[0m, or one started with the [1m--login[0m option.
An [4minteractive[24m shell is one started without non-option arguments and without the [1m-c[0m option whose standard input
and error are both connected to terminals (as determined by [4misatty[24m(3)), or one started with the [1m-i[0m option. [1mPS1[0m
is set and [1m$-[0m includes [1mi[0m if [1mbash[0m is interactive, allowing a shell script or a startup file to test this state.
The following paragraphs describe how [1mbash[0m executes its startup files. If any of the files exist but cannot be
read, [1mbash[0m reports an error. Tildes are expanded in file names as described below under [1mTilde[0m [1mExpansion[0m in the
[1mEXPANSION[0m section.
When [1mbash[0m is invoked as an interactive login shell, or as a non-interactive shell with the [1m--login[0m option, it
first reads and executes commands from the file [4m/etc/profile[24m, if that file exists. After reading that file, it
looks for [4m~/.bash_profile[24m, [4m~/.bash_login[24m, and [4m~/.profile[24m, in that order, and reads and executes commands from
the first one that exists and is readable. The [1m--noprofile[0m option may be used when the shell is started to
inhibit this behavior.
When a login shell exits, [1mbash[0m reads and executes commands from the file [4m~/.bash_logout[24m, if it exists.
When an interactive shell that is not a login shell is started, [1mbash[0m reads and executes commands from
[4m~/.bashrc[24m, if that file exists. This may be inhibited by using the [1m--norc[0m option. The [1m--rcfile[0m [4mfile[24m option
will force [1mbash[0m to read and execute commands from [4mfile[24m instead of [4m~/.bashrc[24m.
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[K[[[K66[K~~[K When [1mbash[0m is started non-interactively, to run a shell script, for example, it looks for the variable [1mBASH_ENV[0m
in the environment, expands its value if it appears there, and uses the expanded value as the name of a file to
read and execute. [1mBash[0m behaves as if the following command were executed:
if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi
but the value of the [1mPATH[0m variable is not used to search for the file name.
If [1mbash[0m is invoked with the name [1msh[0m, it tries to mimic the startup behavior of historical versions of [1msh[0m as
closely as possible, while conforming to the POSIX standard as well. When invoked as an interactive login
shell, or a non-interactive shell with the [1m--login[0m option, it first attempts to read and execute commands from
[4m/etc/profile[24m and [4m~/.profile[24m, in that order. The [1m--noprofile[0m option may be used to inhibit this behavior. When
invoked as an interactive shell with the name [1msh[0m, [1mbash[0m looks for the variable [1mENV[0m, expands its value if it is
defined, and uses the expanded value as the name of a file to read and execute. Since a shell invoked as [1msh[0m
does not attempt to read and execute commands from any other startup files, the [1m--rcfile[0m option has no effect.
A non-interactive shell invoked with the name [1msh[0m does not attempt to read any other startup files. When
invoked as [1msh[0m, [1mbash[0m enters [4mposix[24m mode after the startup files are read.
When [1mbash[0m is started in [4mposix[24m mode, as with the [1m--posix[0m command line option, it follows the POSIX standard for
startup files. In this mode, interactive shells expand the [1mENV[0m variable and commands are read and executed
from the file whose name is the expanded value. No other startup files are read.
[1mBash[0m attempts to determine when it is being run by the remote shell daemon, usually [4mrshd[24m. If [1mbash[0m determines
it is being run by [4mrshd[24m, it reads and executes commands from [4m~/.bashrc[24m, if that file exists and is readable.
It will not do this if invoked as [1msh[0m. The [1m--norc[0m option may be used to inhibit this behavior, and the [1m--rcfile[0m
option may be used to force another file to be read, but [4mrshd[24m does not generally invoke the shell with those
options or allow them to be specified.
If the shell is started with the effective user (group) id not equal to the real user (group) id, and the [1m-p[0m
option is not supplied, no startup files are read, shell functions are not inherited from the environment, the
[1mSHELLOPTS[0m variable, if it appears in the environment, is ignored, and the effective user id is set to the real
user id. If the [1m-p[0m option is supplied at invocation, the startup behavior is the same, but the effective user
id is not reset.
[1mDEFINITIONS[0m
The following definitions are used throughout the rest of this document.
[1mblank[0m A space or tab.
[1mword[0m A sequence of characters considered as a single unit by the shell. Also known as a [1mtoken[0m.
[1mname[0m A [4mword[24m consisting only of alphanumeric characters and underscores, and beginning with an alphabetic
character or an underscore. Also referred to as an [1midentifier[0m.
[1mmetacharacter[0m
A character that, when unquoted, separates words. One of the following:
[1m|[0m [1m&[0m [1m;[0m [1m([0m [1m)[0m [1m<[0m [1m>[0m [1mspace[0m [1mtab[0m
[1mcontrol[0m [1moperator[0m
A [4mtoken[24m that performs a control function. It is one of the following symbols:
[1m||[0m [1m&[0m [1m&&[0m [1m;[0m [1m;;[0m [1m([0m [1m)[0m [1m|[0m [1m<newline>[0m
[1mRESERVED[0m [1mWORDS[0m
[4mReserved[24m [4mwords[24m are words that have a special meaning to the shell. The following words are recognized as
reserved when unquoted and either the first word of a simple command (see [1mSHELL[0m [1mGRAMMAR[0m below) or the third
word of a [1mcase[0m or [1mfor[0m command:
:[K[K [KESCESC[K[[[K66[K~~[K [1m![0m [1mcase[0m [1mdo[0m [1mdone[0m [1melif[0m [1melse[0m [1mesac[0m [1mfi[0m [1mfor[0m [1mfunction[0m [1mif[0m [1min[0m [1mselect[0m [1mthen[0m [1muntil[0m [1mwhile[0m [1m{[0m [1m}[0m [1mtime[0m [1m[[[0m [1m]][0m
[1mSHELL[0m [1mGRAMMAR[0m
[1mSimple[0m [1mCommands[0m
A [4msimple[24m [4mcommand[24m is a sequence of optional variable assignments followed by [1mblank[0m-separated words and redirec-
tions, and terminated by a [4mcontrol[24m [4moperator[24m. The first word specifies the command to be executed, and is
passed as argument zero. The remaining words are passed as arguments to the invoked command.
The return value of a [4msimple[24m [4mcommand[24m is its exit status, or 128+[4mn[24m if the command is terminated by signal [4mn[24m.
[1mPipelines[0m
A [4mpipeline[24m is a sequence of one or more commands separated by the character [1m|[0m. The format for a pipeline is:
[[1mtime[0m [[1m-p[0m]] [ ! ] [4mcommand[24m [ [1m|[0m [4mcommand2[24m ... ]
The standard output of [4mcommand[24m is connected via a pipe to the standard input of [4mcommand2[24m. This connection is
performed before any redirections specified by the command (see [1mREDIRECTION[0m below).
The return status of a pipeline is the exit status of the last command, unless the [1mpipefail[0m option is enabled.
If [1mpipefail[0m is enabled, the pipeline's return status is the value of the last (rightmost) command to exit with
a non-zero status, or zero if all commands exit successfully. If the reserved word [1m![0m precedes a pipeline, the
exit status of that pipeline is the logical negation of the exit status as described above. The shell waits
for all commands in the pipeline to terminate before returning a value.
If the [1mtime[0m reserved word precedes a pipeline, the elapsed as well as user and system time consumed by its exe-
cution are reported when the pipeline terminates. The [1m-p[0m option changes the output format to that specified by
POSIX. The [1mTIMEFORMAT[0m variable may be set to a format string that specifies how the timing information should
be displayed; see the description of [1mTIMEFORMAT[0m under [1mShell[0m [1mVariables[0m below.
Each command in a pipeline is executed as a separate process (i.e., in a subshell).
[1mLists[0m
A [4mlist[24m is a sequence of one or more pipelines separated by one of the operators [1m;[0m, [1m&[0m, [1m&&[0m, or [1m||[0m, and optionally
terminated by one of [1m;[0m, [1m&[0m, or [1m<newline>[0m.
Of these list operators, [1m&&[0m and [1m||[0m have equal precedence, followed by [1m;[0m and [1m&,[0m which have equal precedence.
A sequence of one or more newlines may appear in a [4mlist[24m instead of a semicolon to delimit commands.
If a command is terminated by the control operator [1m&[0m, the shell executes the command in the [4mbackground[24m in a
subshell. The shell does not wait for the command to finish, and the return status is 0. Commands separated
by a [1m;[0m are executed sequentially; the shell waits for each command to terminate in turn. The return status is
the exit status of the last command executed.
The control operators [1m&&[0m and [1m||[0m denote AND lists and OR lists, respectively. An AND list has the form
[4mcommand1[24m [1m&&[0m [4mcommand2[24m
[4mcommand2[24m is executed if, and only if, [4mcommand1[24m returns an exit status of zero.
:[K[K [KESCESC[K[[[K66[K~~[K An OR list has the form
[4mcommand1[24m [1m||[0m [4mcommand2[24m
[4mcommand2[24m is executed if and only if [4mcommand1[24m returns a non-zero exit status. The return status of AND and OR
lists is the exit status of the last command executed in the list.
[1mCompound[0m [1mCommands[0m
A [4mcompound[24m [4mcommand[24m is one of the following:
([4mlist[24m) [4mlist[24m is executed in a subshell environment (see [1mCOMMAND[0m [1mEXECUTION[0m [1mENVIRONMENT[0m below). Variable assign-
ments and builtin commands that affect the shell's environment do not remain in effect after the command
completes. The return status is the exit status of [4mlist[24m.
{ [4mlist[24m; }
[4mlist[24m is simply executed in the current shell environment. [4mlist[24m must be terminated with a newline or
semicolon. This is known as a [4mgroup[24m [4mcommand[24m. The return status is the exit status of [4mlist[24m. Note that
unlike the metacharacters [1m([0m and [1m)[0m, [1m{[0m and [1m}[0m are [4mreserved[24m [4mwords[24m and must occur where a reserved word is
permitted to be recognized. Since they do not cause a word break, they must be separated from [4mlist[24m by
whitespace.
(([4mexpression[24m))
The [4mexpression[24m is evaluated according to the rules described below under [1mARITHMETIC[0m [1mEVALUATION[0m. If the
value of the expression is non-zero, the return status is 0; otherwise the return status is 1. This is
exactly equivalent to [1mlet[0m [1m"[0m[4mexpression[24m[1m"[0m.
[1m[[[0m [4mexpression[24m [1m]][0m
Return a status of 0 or 1 depending on the evaluation of the conditional expression [4mexpression[24m. Expres-
sions are composed of the primaries described below under [1mCONDITIONAL[0m [1mEXPRESSIONS[0m. Word splitting and
pathname expansion are not performed on the words between the [1m[[[0m and [1m]][0m; tilde expansion, parameter and
variable expansion, arithmetic expansion, command substitution, process substitution, and quote removal
are performed. Conditional operators such as [1m-f[0m must be unquoted to be recognized as primaries.
When the [1m==[0m and [1m!=[0m operators are used, the string to the right of the operator is considered a pattern
and matched according to the rules described below under [1mPattern[0m [1mMatching[0m. If the shell option [1mnocase-[0m
[1mmatch[0m is enabled, the match is performed without regard to the case of alphabetic characters. The
return value is 0 if the string matches ([1m==[0m) or does not match ([1m!=[0m) the pattern, and 1 otherwise. Any
part of the pattern may be quoted to force it to be matched as a string.
An additional binary operator, [1m=~[0m, is available, with the same precedence as [1m==[0m and [1m!=[0m. When it is
used, the string to the right of the operator is considered an extended regular expression and matched
accordingly (as in [4mregex[24m(3)). The return value is 0 if the string matches the pattern, and 1 otherwise.
If the regular expression is syntactically incorrect, the conditional expression's return value is 2.
If the shell option [1mnocasematch[0m is enabled, the match is performed without regard to the case of alpha-
betic characters. Substrings matched by parenthesized subexpressions within the regular expression are
saved in the array variable [1mBASH_REMATCH[0m. The element of [1mBASH_REMATCH[0m with index 0 is the portion of
the string matching the entire regular expression. The element of [1mBASH_REMATCH[0m with index [4mn[24m is the por-
tion of the string matching the [4mn[24mth parenthesized subexpression.
Expressions may be combined using the following operators, listed in decreasing order of precedence:
:[K[K [KESCESC[K[[[K66[K~~[K
[1m([0m [4mexpression[24m [1m)[0m
Returns the value of [4mexpression[24m. This may be used to override the normal precedence of opera-
tors.
[1m![0m [4mexpression[24m
True if [4mexpression[24m is false.
[4mexpression1[24m [1m&&[0m [4mexpression2[24m
True if both [4mexpression1[24m and [4mexpression2[24m are true.
[4mexpression1[24m [1m||[0m [4mexpression2[24m
True if either [4mexpression1[24m or [4mexpression2[24m is true.
The [1m&&[0m and [1m||[0m operators do not evaluate [4mexpression2[24m if the value of [4mexpression1[24m is sufficient to deter-
mine the return value of the entire conditional expression.
[1mfor[0m [4mname[24m [ [1min[0m [4mword[24m ] ; [1mdo[0m [4mlist[24m ; [1mdone[0m
The list of words following [1min[0m is expanded, generating a list of items. The variable [4mname[24m is set to
each element of this list in turn, and [4mlist[24m is executed each time. If the [1min[0m [4mword[24m is omitted, the [1mfor[0m
command executes [4mlist[24m once for each positional parameter that is set (see [1mPARAMETERS[0m below). The return
status is the exit status of the last command that executes. If the expansion of the items following [1min[0m
results in an empty list, no commands are executed, and the return status is 0.
[1mfor[0m (( [4mexpr1[24m ; [4mexpr2[24m ; [4mexpr3[24m )) ; [1mdo[0m [4mlist[24m ; [1mdone[0m
First, the arithmetic expression [4mexpr1[24m is evaluated according to the rules described below under [1mARITH-[0m
[1mMETIC[0m [1mEVALUATION[0m. The arithmetic expression [4mexpr2[24m is then evaluated repeatedly until it evaluates to
zero. Each time [4mexpr2[24m evaluates to a non-zero value, [4mlist[24m is executed and the arithmetic expression
[4mexpr3[24m is evaluated. If any expression is omitted, it behaves as if it evaluates to 1. The return value
is the exit status of the last command in [4mlist[24m that is executed, or false if any of the expressions is
invalid.
[1mselect[0m [4mname[24m [ [1min[0m [4mword[24m ] ; [1mdo[0m [4mlist[24m ; [1mdone[0m
The list of words following [1min[0m is expanded, generating a list of items. The set of expanded words is
printed on the standard error, each preceded by a number. If the [1min[0m [4mword[24m is omitted, the positional
parameters are printed (see [1mPARAMETERS[0m below). The [1mPS3[0m prompt is then displayed and a line read from
the standard input. If the line consists of a number corresponding to one of the displayed words, then
the value of [4mname[24m is set to that word. If the line is empty, the words and prompt are displayed again.
If EOF is read, the command completes. Any other value read causes [4mname[24m to be set to null. The line
read is saved in the variable [1mREPLY[0m. The [4mlist[24m is executed after each selection until a [1mbreak[0m command is
executed. The exit status of [1mselect[0m is the exit status of the last command executed in [4mlist[24m, or zero if
no commands were executed.
[1mcase[0m [4mword[24m [1min[0m [ [(] [4mpattern[24m [ [1m|[0m [4mpattern[24m ] ... ) [4mlist[24m ;; ] ... [1mesac[0m
A [1mcase[0m command first expands [4mword[24m, and tries to match it against each [4mpattern[24m in turn, using the same
matching rules as for pathname expansion (see [1mPathname[0m [1mExpansion[0m below). The [4mword[24m is expanded using
tilde expansion, parameter and variable expansion, arithmetic substitution, command substitution, pro-
cess substitution and quote removal. Each [4mpattern[24m examined is expanded using tilde expansion, parameter
and variable expansion, arithmetic substitution, command substitution, and process substitution. If the
shell option [1mnocasematch[0m is enabled, the match is performed without regard to the case of alphabetic
characters. When a match is found, the corresponding [4mlist[24m is executed. After the first match, no sub-
sequent matches are attempted. The exit status is zero if no pattern matches. Otherwise, it is the
exit status of the last command executed in [4mlist[24m.
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [1mif[0m [4mlist[24m; [1mthen[0m [4mlist;[24m [ [1melif[0m [4mlist[24m; [1mthen[0m [4mlist[24m; ] ... [ [1melse[0m [4mlist[24m; ] [1mfi[0m
:[K[K [KESCESC[KOO[KBB[K The [1mif[0m [4mlist[24m is executed. If its exit status is zero, the [1mthen[0m [4mlist[24m is executed. Otherwise, each [1melif[0m
:[K[K [KESCESC[KOO[KBB[K [4mlist[24m is executed in turn, and if its exit status is zero, the corresponding [1mthen[0m [4mlist[24m is executed and
:[K[K [KESCESC[KOO[KBB[K the command completes. Otherwise, the [1melse[0m [4mlist[24m is executed, if present. The exit status is the exit
:[K[K [KESCESC[KOO[KBB[K status of the last command executed, or zero if no condition tested true.
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [1mwhile[0m [4mlist[24m; [1mdo[0m [4mlist[24m; [1mdone[0m
:[K[K [KESCESC[KOO[KBB[K [1muntil[0m [4mlist[24m; [1mdo[0m [4mlist[24m; [1mdone[0m
:[K[K [KESCESC[KOO[KBB[K The [1mwhile[0m command continuously executes the [1mdo[0m [4mlist[24m as long as the last command in [4mlist[24m returns an exit
:[K[K [KESCESC[KOO[KBB[K status of zero. The [1muntil[0m command is identical to the [1mwhile[0m command, except that the test is negated;
:[K[K [KESCESC[KOO[KBB[K the [1mdo[0m [4mlist[24m is executed as long as the last command in [4mlist[24m returns a non-zero exit status. The exit
:[K[K [KESCESC[KOO[KBB[K status of the [1mwhile[0m and [1muntil[0m commands is the exit status of the last [1mdo[0m [4mlist[24m command executed, or zero
:[K[K [KESCESC[KOO[KBB[K if none was executed.
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [1mShell[0m [1mFunction[0m [1mDefinitions[0m
:[K[K [KESCESC[KOO[KBB[K A shell function is an object that is called like a simple command and executes a compound command with a new
:[K[K [KESCESC[KOO[KBB[K set of positional parameters. Shell functions are declared as follows:
:[K[K [KESCESC[KOO[KBB[K
:[K[K [KESCESC[KOO[KBB[K [ [1mfunction[0m ] [4mname[24m () [4mcompound-command[24m [[4mredirection[24m]
:[K[K [KESCESC[KOO[KBB[K This defines a function named [4mname[24m. The reserved word [1mfunction[0m is optional. If the [1mfunction[0m reserved
:[K[K [KESCESC[KOO[KBB[K word is supplied, the parentheses are optional. The [4mbody[24m of the function is the compound command [4mcom-[24m
:[K[K [KESCESC[KOO[KBB[K [4mpound-command[24m (see [1mCompound[0m [1mCommands[0m above). That command is usually a [4mlist[24m of commands between { and
:[K[K [KESCESC[KOO[KBB[K }, but may be any command listed under [1mCompound[0m [1mCommands[0m above. [4mcompound-command[24m is executed whenever
:[K[K [4mname[24m is specified as the name of a simple command. Any redirections (see [1mREDIRECTION[0m below) specified
:[K[K:[K[K:[K[K[7mNo next tag (press RETURN)[27m[51;1H[K:[K[K[?1l>[?1049l]0;cbekker@cwolf:~/cs210[cbekker@cwolf cs210]$ man bash[Kdin find bash h
find: bash: No such file or directory
]0;cbekker@cwolf:~/cs210[cbekker@cwolf cs210]$ find / / -n bash
find: invalid predicate `-n'
]0;cbekker@cwolf:~/cs210[cbekker@cwolf cs210]$ find / -n bash[1@a[1@m[1@e
find: /root: Permission denied
find: /etc/pki/CA: Permission denied
find: /etc/portsentry: Permission denied
find: /etc/lvm/archive: Permission denied
find: /etc/lvm/cache: Permission denied
find: /etc/lvm/backup: Permission denied
find: /etc/libvirt: Permission denied
find: /etc/ntp/crypto: Permission denied
find: /etc/selinux/targeted/modules/active: Permission denied
find: /etc/cups/ssl: Permission denied
find: /etc/BackupPC: Permission denied
find: /etc/audit: Permission denied
find: /etc/racoon/certs: Permission denied
find: /etc/racoon/scripts: Permission denied
find: /etc/audisp: Permission denied
find: /boot/lost+found: Permission denied
find: /var/spool/cups: Permission denied
find: /var/spool/at: Permission denied
find: /var/spool/mqueue: Permission denied
find: /var/spool/cron: Permission denied
find: /var/spool/clientmqueue: Permission denied
find: /var/spool/squid: Permission denied
find: /var/empty/sshd: Permission denied
find: /var/portsentry: Permission denied
find: /var/gdm: Permission denied
find: /var/log/httpd: Permission denied
find: /var/log/libvirt/qemu: Permission denied
find: /var/log/gdm: Permission denied
find: /var/log/audit: Permission denied
find: /var/log/BackupPC: Permission denied
find: /var/log/ppp: Permission denied
find: /var/log/samba: Permission denied
find: /var/log/squid: Permission denied
find: /var/lock/lvm: Permission denied
find: /var/run/mdadm: Permission denied
find: /var/run/cups/certs: Permission denied
find: /var/run/hald: Permission denied
find: /var/run/PolicyKit: Permission denied
find: /var/run/dovecot/login: Permission denied
find: /var/run/sudo: Permission denied
find: /var/run/named: Permission denied
find: /var/run/screen/S-dfoley: Permission denied
find: /var/cache/tomcat5/work: Permission denied
find: /var/cache/tomcat5/temp: Permission denied
find: /var/cache/hald: Permission denied
find: /var/cache/mod_ssl: Permission denied
find: /var/cache/ldconfig: Permission denied
find: /var/cache/mod_proxy: Permission denied
find: /var/cache/ccache: Permission denied
find: /var/named: Permission denied
find: /var/lost+found: Permission denied
find: /var/lib/dhcpv6: Permission denied
find: /var/lib/mlocate: Permission denied
find: /var/lib/dav: Permission denied
find: /var/lib/libvirt/boot: Permission denied
find: /var/lib/libvirt/images: Permission denied
find: /var/lib/gdm: Permission denied
find: /var/lib/aide: Permission denied
find: /var/lib/PolicyKit: Permission denied
find: /var/lib/dovecot: Permission denied
find: /var/lib/authconfig: Permission denied
find: /var/lib/pgsql: Permission denied
find: /var/lib/rpcbind: Permission denied
find: /var/lib/BackupPC: Permission denied
find: /var/lib/php/session: Permission denied
find: /var/lib/samba/winbindd_privileged: Permission denied
find: /var/lib/samba/private: Permission denied
find: /var/lib/nfs/statd: Permission denied
find: /usr/lib64/audit: Permission denied
quifind: /tmp/pulse-raven: Permission denied
find: /tmp/orbit-schettle: Permission denied
find: /tmp/ssh-vHVVQK9812: Permission denied
find: /tmp/pulse-aestrugo: Permission denied
find: /tmp/orbit-shansen: Permission denied
find: /tmp/.esd-3873: Permission denied
find: /tmp/.esd-500: Permission denied
find: /tmp/.esd-0: Permission denied
find: /tmp/orbit-jpagan: Permission denied
find: /tmp/.esd-3816: Permission denied
find: /tmp/pulse-root: Permission denied
find: /tmp/orbit-kyost: Permission denied
find: /tmp/pulse-sgordon: Permission denied
find: /tmp/keyring-lMnBtG: Permission denied
find: /tmp/pulse-gscott: Permission denied
find: /tmp/keyring-agyaew: Permission denied
find: /tmp/.esd-3896: Permission denied
find: /tmp/keyring-wlSNIb: Permission denied
find: /tmp/keyring-1LztIf: Permission denied
find: /tmp/.esd-3915: Permission denied
find: /tmp/keyring-QEL6xG: Permission denied
find: /tmp/pulse-sfrazier: Permission denied
find: /tmp/keyring-Fymftn: Permission denied
find: /tmp/keyring-HhZORe: Permission denied
find: /tmp/.esd-2148: Permission denied
find: /tmp/gpg-V9f9Yn: Permission denied
find: /tmp/pulse-rmamer: Permission denied
find: /proc/tty/driver: Permission denied
find: /proc/1/task/1/fd: Permission denied
find: /proc/1/task/1/fdinfo: Permission denied
find: /proc/1/fd: Permission denied
find: /proc/1/fdinfo: Permission denied
find: /proc/2/task/2/fd: Permission denied
find: /proc/2/task/2/fdinfo: Permission denied
find: /proc/2/fd: Permission denied
find: /proc/2/fdinfo: Permission denied
find: /proc/3/task/3/fd: Permission denied
find: /proc/3/task/3/fdinfo: Permission denied
find: /proc/3/fd: Permission denied
find: /proc/3/fdinfo: Permission denied
find: /proc/4/task/4/fd: Permission denied
find: /proc/4/task/4/fdinfo: Permission denied
find: /proc/4/fd: Permission denied
find: /proc/4/fdinfo: Permission denied
find: /proc/5/task/5/fd: Permission denied
find: /proc/5/task/5/fdinfo: Permission denied
find: /proc/5/fd: Permission denied
find: /proc/5/fdinfo: Permission denied
find: /proc/6/task/6/fd: Permission denied
find: /proc/6/task/6/fdinfo: Permission denied
find: /proc/6/fd: Permission denied
find: /proc/6/fdinfo: Permission denied
find: /proc/7/task/7/fd: Permission denied
find: /proc/7/task/7/fdinfo: Permission denied
find: /proc/7/fd: Permission denied
find: /proc/7/fdinfo: Permission denied
find: /proc/8/task/8/fd: Permission denied
find: /proc/8/task/8/fdinfo: Permission denied
find: /proc/8/fd: Permission denied
find: /proc/8/fdinfo: Permission denied
find: /proc/9/task/9/fd: Permission denied
find: /proc/9/task/9/fdinfo: Permission denied
find: /proc/9/fd: Permission denied
find: /proc/9/fdinfo: Permission denied
find: /proc/10/task/10/fd: Permission denied
find: /proc/10/task/10/fdinfo: Permission denied
find: /proc/10/fd: Permission denied
find: /proc/10/fdinfo: Permission denied
find: /proc/11/task/11/fd: Permission denied
find: /proc/11/task/11/fdinfo: Permission denied
find: /proc/11/fd: Permission denied
find: /proc/11/fdinfo: Permission denied
find: /proc/60/task/60/fd: Permission denied
find: /proc/60/task/60/fdinfo: Permission denied
find: /proc/60/fd: Permission denied
find: /proc/60/fdinfo: Permission denied
find: /proc/61/task/61/fd: Permission denied
find: /proc/61/task/61/fdinfo: Permission denied
find: /proc/61/fd: Permission denied
find: /proc/61/fdinfo: Permission denied
find: /proc/63/task/63/fd: Permission denied
find: /proc/63/task/63/fdinfo: Permission denied
find: /proc/63/fd: Permission denied
find: /proc/63/fdinfo: Permission denied
find: /proc/64/task/64/fd: Permission denied
find: /proc/64/task/64/fdinfo: Permission denied
find: /proc/64/fd: Permission denied
find: /proc/64/fdinfo: Permission denied
find: /proc/145/task/145/fd: Permission denied
find: /proc/145/task/145/fdinfo: Permission denied
find: /proc/145/fd: Permission denied
find: /proc/145/fdinfo: Permission denied
find: /proc/147/task/147/fd: Permission denied
find: /proc/147/task/147/fdinfo: Permission denied
find: /proc/147/fd: Permission denied
find: /proc/147/fdinfo: Permission denied
find: /proc/152/task/152/fd: Permission denied
find: /proc/152/task/152/fdinfo: Permission denied
find: /proc/152/fd: Permission denied
find: /proc/152/fdinfo: Permission denied
find: /proc/155/task/155/fd: Permission denied
find: /proc/155/task/155/fdinfo: Permission denied
find: /proc/155/fd: Permission denied
find: /proc/155/fdinfo: Permission denied
find: /proc/214/task/214/fd: Permission denied
find: /proc/214/task/214/fdinfo: Permission denied
find: /proc/214/fd: Permission denied
find: /proc/214/fdinfo: Permission denied
find: /proc/215/task/215/fd: Permission denied
find: /proc/215/task/215/fdinfo: Permission denied
find: /proc/215/fd: Permission denied
find: /proc/215/fdinfo: Permission denied
find: /proc/262/task/262/fd: Permission denied
find: /proc/262/task/262/fdinfo: Permission denied
find: /proc/262/fd: Permission denied
find: /proc/262/fdinfo: Permission denied
find: /proc/263/task/263/fd: Permission denied
find: /proc/263/task/263/fdinfo: Permission denied
find: /proc/263/fd: Permission denied
find: /proc/263/fdinfo: Permission denied
find: /proc/402/task/402/fd: Permission denied
find: /proc/402/task/402/fdinfo: Permission denied
find: /proc/402/fd: Permission denied
find: /proc/402/fdinfo: Permission denied
find: /proc/441/task/441/fd: Permission denied
find: /proc/441/task/441/fdinfo: Permission denied
find: /proc/441/fd: Permission denied
find: /proc/441/fdinfo: Permission denied
find: /proc/454/task/454/fd: Permission denied
find: /proc/454/task/454/fdinfo: Permission denied
find: /proc/454/fd: Permission denied
find: /proc/454/fdinfo: Permission denied
find: /proc/502/task/502/fd: Permission denied
find: /proc/502/task/502/fdinfo: Permission denied
find: /proc/502/fd: Permission denied
find: /proc/502/fdinfo: Permission denied
find: /proc/616/task/616/fd: Permission denied
find: /proc/616/task/616/fdinfo: Permission denied
find: /proc/616/fd: Permission denied
find: /proc/616/fdinfo: Permission denied
find: /proc/619/task/619/fd: Permission denied
find: /proc/619/task/619/fdinfo: Permission denied
find: /proc/619/fd: Permission denied
find: /proc/619/fdinfo: Permission denied
find: /proc/621/task/621/fd: Permission denied
find: /proc/621/task/621/fdinfo: Permission denied
find: /proc/621/fd: Permission denied
find: /proc/621/fdinfo: Permission denied
find: /proc/646/task/646/fd: Permission denied
find: /proc/646/task/646/fdinfo: Permission denied
find: /proc/646/fd: Permission denied
find: /proc/646/fdinfo: Permission denied
find: /proc/653/task/653/fd: Permission denied
find: /proc/653/task/653/fdinfo: Permission denied
find: /proc/653/fd: Permission denied
find: /proc/653/fdinfo: Permission denied
find: /proc/911/task/911/fd: Permission denied
find: /proc/911/task/911/fdinfo: Permission denied
find: /proc/911/fd: Permission denied
find: /proc/911/fdinfo: Permission denied
find: /proc/912/task/912/fd: Permission denied
find: /proc/912/task/912/fdinfo: Permission denied
find: /proc/912/fd: Permission denied
find: /proc/912/fdinfo: Permission denied
find: /proc/913/task/913/fd: Permission denied
find: /proc/913/task/913/fdinfo: Permission denied
find: /proc/913/fd: Permission denied
find: /proc/913/fdinfo: Permission denied
find: /proc/915/task/915/fd: Permission denied
find: /proc/915/task/915/fdinfo: Permission denied
find: /proc/915/fd: Permission denied
find: /proc/915/fdinfo: Permission denied
find: /proc/978/task/978/fd: Permission denied
find: /proc/978/task/978/fdinfo: Permission denied
find: /proc/978/fd: Permission denied
find: /proc/978/fdinfo: Permission denied
find: /proc/1256/task/1256/fd: Permission denied
find: /proc/1256/task/1256/fdinfo: Permission denied
find: /proc/1256/fd: Permission denied
find: /proc/1256/fdinfo: Permission denied
find: /proc/1268/task/1268/fd: Permission denied
find: /proc/1268/task/1268/fdinfo: Permission denied
find: /proc/1268/fd: Permission denied
find: /proc/1268/fdinfo: Permission denied
find: /proc/1269/task/1269/fd: Permission denied
find: /proc/1269/task/1269/fdinfo: Permission denied
find: /proc/1269/fd: Permission denied
find: /proc/1269/fdinfo: Permission denied
find: /proc/1298/task/1298/fd: Permission denied
find: /proc/1298/task/1298/fdinfo: Permission denied
find: /proc/1298/fd: Permission denied
find: /proc/1298/fdinfo: Permission denied
find: /proc/1299/task/1299/fd: Permission denied
find: /proc/1299/task/1299/fdinfo: Permission denied
find: /proc/1299/fd: Permission denied
find: /proc/1299/fdinfo: Permission denied
find: /proc/1306/task/1306/fd: Permission denied
find: /proc/1306/task/1306/fdinfo: Permission denied
find: /proc/1306/fd: Permission denied
find: /proc/1306/fdinfo: Permission denied
find: /proc/1308/task/1308/fd: Permission denied
find: /proc/1308/task/1308/fdinfo: Permission denied
find: /proc/1308/fd: Permission denied
find: /proc/1308/fdinfo: Permission denied
find: /proc/1309/task/1309/fd: Permission denied
find: /proc/1309/task/1309/fdinfo: Permission denied
find: /proc/1309/fd: Permission denied
find: /proc/1309/fdinfo: Permission denied
find: /proc/1391/task/1391/fd: Permission denied
find: /proc/1391/task/1391/fdinfo: Permission denied
find: /proc/1391/fd: Permission denied
find: /proc/1391/fdinfo: Permission denied
find: /proc/1408/task/1408/fd: Permission denied
find: /proc/1408/task/1408/fdinfo: Permission denied
find: /proc/1408/fd: Permission denied
find: /proc/1408/fdinfo: Permission denied
find: /proc/1420/task/1420/fd: Permission denied
find: /proc/1420/task/1420/fdinfo: Permission denied
find: /proc/1420/fd: Permission denied
find: /proc/1420/fdinfo: Permission denied
find: /proc/1424/task/1424/fd: Permission denied
find: /proc/1424/task/1424/fdinfo: Permission denied
find: /proc/1424/fd: Permission denied
find: /proc/1424/fdinfo: Permission denied
find: /proc/1428/task/1428/fd: Permission denied
find: /proc/1428/task/1428/fdinfo: Permission denied
find: /proc/1428/fd: Permission denied
find: /proc/1428/fdinfo: Permission denied
find: /proc/1429/task/1429/fd: Permission denied
find: /proc/1429/task/1429/fdinfo: Permission denied
find: /proc/1429/fd: Permission denied
find: /proc/1429/fdinfo: Permission denied
find: /proc/1434/task/1434/fd: Permission denied
find: /proc/1434/task/1434/fdinfo: Permission denied
find: /proc/1434/fd: Permission denied
find: /proc/1434/fdinfo: Permission denied
find: /proc/1442/task/1442/fd: Permission denied
find: /proc/1442/task/1442/fdinfo: Permission denied
find: /proc/1442/fd: Permission denied
find: /proc/1442/fdinfo: Permission denied
find: /proc/1443/task/1443/fd: Permission denied
find: /proc/1443/task/1443/fdinfo: Permission denied
find: /proc/1443/fd: Permission denied
find: /proc/1443/fdinfo: Permission denied
find: /proc/1745/task/1745/fd: Permission denied
find: /proc/1745/task/1745/fdinfo: Permission denied
find: /proc/1745/task/1746/fd: Permission denied
find: /proc/1745/task/1746/fdinfo: Permission denied
find: /proc/1745/fd: Permission denied
find: /proc/1745/fdinfo: Permission denied
find: /proc/1747/task/1747/fd: Permission denied
find: /proc/1747/task/1747/fdinfo: Permission denied
find: /proc/1747/task/1748/fd: Permission denied
find: /proc/1747/task/1748/fdinfo: Permission denied
find: /proc/1747/fd: Permission denied
find: /proc/1747/fdinfo: Permission denied
find: /proc/1764/task/1764/fd: Permission denied
find: /proc/1764/task/1764/fdinfo: Permission denied
find: /proc/1764/task/7291/fd: Permission denied
find: /proc/1764/task/7291/fdinfo: Permission denied
find: /proc/1764/task/7292/fd: Permission denied
find: /proc/1764/task/7292/fdinfo: Permission denied
find: /proc/1764/task/12483/fd: Permission denied
find: /proc/1764/task/12483/fdinfo: Permission denied
find: /proc/1764/fd: Permission denied
find: /proc/1764/fdinfo: Permission denied
find: /proc/1776/task/1776/fd: Permission denied
find: /proc/1776/task/1776/fdinfo: Permission denied
find: /proc/1776/fd: Permission denied
find: /proc/1776/fdinfo: Permission denied
find: /proc/1791/task/1791/fd: Permission denied
find: /proc/1791/task/1791/fdinfo: Permission denied
find: /proc/1791/fd: Permission denied
find: /proc/1791/fdinfo: Permission denied
find: /proc/1815/task/1815/fd: Permission denied
find: /proc/1815/task/1815/fdinfo: Permission denied
find: /proc/1815/fd: Permission denied
find: /proc/1815/fdinfo: Permission denied
find: /proc/1841/task/1841/fd: Permission denied
find: /proc/1841/task/1841/fdinfo: Permission denied
find: /proc/1841/fd: Permission denied
find: /proc/1841/fdinfo: Permission denied
find: /proc/1842/task/1842/fd: Permission denied
find: /proc/1842/task/1842/fdinfo: Permission denied
find: /proc/1842/fd: Permission denied
find: /proc/1842/fdinfo: Permission denied
find: /proc/1851/task/1851/fd: Permission denied
find: /proc/1851/task/1851/fdinfo: Permission denied
find: /proc/1851/fd: Permission denied
find: /proc/1851/fdinfo: Permission denied
find: /proc/1872/task/1872/fd: Permission denied
find: /proc/1872/task/1872/fdinfo: Permission denied
find: /proc/1872/fd: Permission denied
find: /proc/1872/fdinfo: Permission denied
find: /proc/1873/task/1873/fd: Permission denied
find: /proc/1873/task/1873/fdinfo: Permission denied
find: /proc/1873/fd: Permission denied
find: /proc/1873/fdinfo: Permission denied
find: /proc/1886/task/1886/fd: Permission denied
find: /proc/1886/task/1886/fdinfo: Permission denied
find: /proc/1886/fd: Permission denied
find: /proc/1886/fdinfo: Permission denied
find: /proc/1896/task/1896/fd: Permission denied
find: /proc/1896/task/1896/fdinfo: Permission denied
find: /proc/1896/fd: Permission denied
find: /proc/1896/fdinfo: Permission denied
find: /proc/1945/task/1945/fd: Permission denied
find: /proc/1945/task/1945/fdinfo: Permission denied
find: /proc/1945/fd: Permission denied
find: /proc/1945/fdinfo: Permission denied
find: /proc/1964/task/1964/fd: Permission denied
find: /proc/1964/task/1964/fdinfo: Permission denied
find: /proc/1964/task/1979/fd: Permission denied
find: /proc/1964/task/1979/fdinfo: Permission denied
find: /proc/1964/fd: Permission denied
find: /proc/1964/fdinfo: Permission denied
find: /proc/1973/task/1973/fd: Permission denied
find: /proc/1973/task/1973/fdinfo: Permission denied
find: /proc/1973/fd: Permission denied
find: /proc/1973/fdinfo: Permission denied
find: /proc/1982/task/1982/fd: Permission denied
find: /proc/1982/task/1982/fdinfo: Permission denied
find: /proc/1982/fd: Permission denied
find: /proc/1982/fdinfo: Permission denied
find: /proc/1985/task/1985/fd: Permission denied
find: /proc/1985/task/1985/fdinfo: Permission denied
find: /proc/1985/task/1987/fd: Permission denied
find: /proc/1985/task/1987/fdinfo: Permission denied
find: /proc/1985/task/1988/fd: Permission denied
find: /proc/1985/task/1988/fdinfo: Permission denied
find: /proc/1985/task/1989/fd: Permission denied
find: /proc/1985/task/1989/fdinfo: Permission denied
find: /proc/1985/task/1990/fd: Permission denied
find: /proc/1985/task/1990/fdinfo: Permission denied
find: /proc/1985/task/1991/fd: Permission denied
find: /proc/1985/task/1991/fdinfo: Permission denied
find: /proc/1985/task/1992/fd: Permission denied
find: /proc/1985/task/1992/fdinfo: Permission denied
find: /proc/1985/task/1994/fd: Permission denied
find: /proc/1985/task/1994/fdinfo: Permission denied
find: /proc/1985/task/1995/fd: Permission denied
find: /proc/1985/task/1995/fdinfo: Permission denied
find: /proc/1985/task/1996/fd: Permission denied
find: /proc/1985/task/1996/fdinfo: Permission denied
find: /proc/1985/task/1997/fd: Permission denied
find: /proc/1985/task/1997/fdinfo: Permission denied
find: /proc/1985/task/1998/fd: Permission denied
find: /proc/1985/task/1998/fdinfo: Permission denied
find: /proc/1985/task/1999/fd: Permission denied
find: /proc/1985/task/1999/fdinfo: Permission denied
find: /proc/1985/task/2000/fd: Permission denied
find: /proc/1985/task/2000/fdinfo: Permission denied
find: /proc/1985/task/2001/fd: Permission denied
find: /proc/1985/task/2001/fdinfo: Permission denied
find: /proc/1985/task/2002/fd: Permission denied
find: /proc/1985/task/2002/fdinfo: Permission denied
find: /proc/1985/task/2003/fd: Permission denied
find: /proc/1985/task/2003/fdinfo: Permission denied
find: /proc/1985/task/2004/fd: Permission denied
find: /proc/1985/task/2004/fdinfo: Permission denied
find: /proc/1985/task/2005/fd: Permission denied
find: /proc/1985/task/2005/fdinfo: Permission denied
find: /proc/1985/task/2006/fd: Permission denied
find: /proc/1985/task/2006/fdinfo: Permission denied
find: /proc/1985/task/2007/fd: Permission denied
find: /proc/1985/task/2007/fdinfo: Permission denied
find: /proc/1985/task/2008/fd: Permission denied
find: /proc/1985/task/2008/fdinfo: Permission denied
find: /proc/1985/task/2009/fd: Permission denied
find: /proc/1985/task/2009/fdinfo: Permission denied
find: /proc/1985/task/2010/fd: Permission denied
find: /proc/1985/task/2010/fdinfo: Permission denied
find: /proc/1985/task/2011/fd: Permission denied
find: /proc/1985/task/2011/fdinfo: Permission denied
find: /proc/1985/task/2012/fd: Permission denied
find: /proc/1985/task/2012/fdinfo: Permission denied
find: /proc/1985/task/2013/fd: Permission denied
find: /proc/1985/task/2013/fdinfo: Permission denied
find: /proc/1985/task/2014/fd: Permission denied
find: /proc/1985/task/2014/fdinfo: Permission denied
find: /proc/1985/task/2015/fd: Permission denied
find: /proc/1985/task/2015/fdinfo: Permission denied
find: /proc/1985/task/2016/fd: Permission denied
find: /proc/1985/task/2016/fdinfo: Permission denied
find: /proc/1985/task/2017/fd: Permission denied
find: /proc/1985/task/2017/fdinfo: Permission denied
find: /proc/1985/task/2018/fd: Permission denied
find: /proc/1985/task/2018/fdinfo: Permission denied
find: /proc/1985/task/2019/fd: Permission denied
find: /proc/1985/task/2019/fdinfo: Permission denied
find: /proc/1985/task/2020/fd: Permission denied
find: /proc/1985/task/2020/fdinfo: Permission denied
find: /proc/1985/task/2021/fd: Permission denied
find: /proc/1985/task/2021/fdinfo: Permission denied
find: /proc/1985/task/2022/fd: Permission denied
find: /proc/1985/task/2022/fdinfo: Permission denied
find: /proc/1985/task/2023/fd: Permission denied
find: /proc/1985/task/2023/fdinfo: Permission denied
find: /proc/1985/task/2024/fd: Permission denied
find: /proc/1985/task/2024/fdinfo: Permission denied
find: /proc/1985/task/2025/fd: Permission denied
find: /proc/1985/task/2025/fdinfo: Permission denied
find: /proc/1985/task/2026/fd: Permission denied
find: /proc/1985/task/2026/fdinfo: Permission denied
find: /proc/1985/task/2027/fd: Permission denied
find: /proc/1985/task/2027/fdinfo: Permission denied
find: /proc/1985/task/2028/fd: Permission denied
find: /proc/1985/task/2028/fdinfo: Permission denied
find: /proc/1985/task/2029/fd: Permission denied
find: /proc/1985/task/2029/fdinfo: Permission denied
find: /proc/1985/task/2030/fd: Permission denied
find: /proc/1985/task/2030/fdinfo: Permission denied
find: /proc/1985/task/2031/fd: Permission denied
find: /proc/1985/task/2031/fdinfo: Permission denied
find: /proc/1985/task/2032/fd: Permission denied
find: /proc/1985/task/2032/fdinfo: Permission denied
find: /proc/1985/task/2033/fd: Permission denied
find: /proc/1985/task/2033/fdinfo: Permission denied
find: /proc/1985/task/2034/fd: Permission denied
find: /proc/1985/task/2034/fdinfo: Permission denied
find: /proc/1985/task/2035/fd: Permission denied
find: /proc/1985/task/2035/fdinfo: Permission denied
find: /proc/1985/task/2036/fd: Permission denied
find: /proc/1985/task/2036/fdinfo: Permission denied
find: /proc/1985/task/2037/fd: Permission denied
find: /proc/1985/task/2037/fdinfo: Permission denied
find: /proc/1985/task/2038/fd: Permission denied
find: /proc/1985/task/2038/fdinfo: Permission denied
find: /proc/1985/task/2039/fd: Permission denied
find: /proc/1985/task/2039/fdinfo: Permission denied
find: /proc/1985/task/2040/fd: Permission denied
find: /proc/1985/task/2040/fdinfo: Permission denied
find: /proc/1985/task/2041/fd: Permission denied
find: /proc/1985/task/2041/fdinfo: Permission denied
find: /proc/1985/task/2042/fd: Permission denied
find: /proc/1985/task/2042/fdinfo: Permission denied
find: /proc/1985/task/2043/fd: Permission denied
find: /proc/1985/task/2043/fdinfo: Permission denied
find: /proc/1985/task/2044/fd: Permission denied
find: /proc/1985/task/2044/fdinfo: Permission denied
find: /proc/1985/task/2045/fd: Permission denied
find: /proc/1985/task/2045/fdinfo: Permission denied
find: /proc/1985/task/2046/fd: Permission denied
find: /proc/1985/task/2046/fdinfo: Permission denied
find: /proc/1985/task/2047/fd: Permission denied
find: /proc/1985/task/2047/fdinfo: Permission denied
find: /proc/1985/task/2048/fd: Permission denied
find: /proc/1985/task/2048/fdinfo: Permission denied
find: /proc/1985/task/27335/fd: Permission denied
find: /proc/1985/task/27335/fdinfo: Permission denied
find: /proc/1985/fd: Permission denied
find: /proc/1985/fdinfo: Permission denied
find: /proc/1986/task/1986/fd: Permission denied
find: /proc/1986/task/1986/fdinfo: Permission denied
find: /proc/1986/fd: Permission denied
find: /proc/1986/fdinfo: Permission denied
find: /proc/2066/task/2066/fd: Permission denied
find: /proc/2066/task/2066/fdinfo: Permission denied
find: /proc/2066/fd: Permission denied
find: /proc/2066/fdinfo: Permission denied
find: /proc/2071/task/2071/fd: Permission denied
find: /proc/2071/task/2071/fdinfo: Permission denied
find: /proc/2071/fd: Permission denied
find: /proc/2071/fdinfo: Permission denied
find: /proc/2074/task/2074/fd: Permission denied
find: /proc/2074/task/2074/fdinfo: Permission denied
find: /proc/2074/fd: Permission denied
find: /proc/2074/fdinfo: Permission denied
find: /proc/2080/task/2080/fd: Permission denied
find: /proc/2080/task/2080/fdinfo: Permission denied
find: /proc/2080/fd: Permission denied
find: /proc/2080/fdinfo: Permission denied
find: /proc/2097/task/2097/fd: Permission denied
find: /proc/2097/task/2097/fdinfo: Permission denied
find: /proc/2097/fd: Permission denied
find: /proc/2097/fdinfo: Permission denied
find: /proc/2108/task/2108/fd: Permission denied
find: /proc/2108/task/2108/fdinfo: Permission denied
find: /proc/2108/fd: Permission denied
find: /proc/2108/fdinfo: Permission denied
find: /proc/2109/task/2109/fd: Permission denied
find: /proc/2109/task/2109/fdinfo: Permission denied
find: /proc/2109/fd: Permission denied
find: /proc/2109/fdinfo: Permission denied
find: /proc/2121/task/2121/fd: Permission denied
find: /proc/2121/task/2121/fdinfo: Permission denied
find: /proc/2121/fd: Permission denied
find: /proc/2121/fdinfo: Permission denied
find: /proc/2140/task/2140/fd: Permission denied
find: /proc/2140/task/2140/fdinfo: Permission denied
find: /proc/2140/fd: Permission denied
find: /proc/2140/fdinfo: Permission denied
find: /proc/2156/task/2156/fd: Permission denied
find: /proc/2156/task/2156/fdinfo: Permission denied
find: /proc/2156/fd: Permission denied
find: /proc/2156/fdinfo: Permission denied
find: /proc/2175/task/2175/fd: Permission denied
find: /proc/2175/task/2175/fdinfo: Permission denied
find: /proc/2175/fd: Permission denied
find: /proc/2175/fdinfo: Permission denied
find: /proc/2176/task/2176/fd: Permission denied
find: /proc/2176/task/2176/fdinfo: Permission denied
find: /proc/2176/fd: Permission denied
find: /proc/2176/fdinfo: Permission denied
find: /proc/2177/task/2177/fd: Permission denied
find: /proc/2177/task/2177/fdinfo: Permission denied
find: /proc/2177/fd: Permission denied
find: /proc/2177/fdinfo: Permission denied
find: /proc/2178/task/2178/fd: Permission denied
find: /proc/2178/task/2178/fdinfo: Permission denied
find: /proc/2178/fd: Permission denied
find: /proc/2178/fdinfo: Permission denied
tfind: /proc/2179/task/2179/fd: Permission denied
find: /proc/2179/task/2179/fdinfo: Permission denied
find: /proc/2179/fd: Permission denied
find: /proc/2179/fdinfo: Permission denied
find: /proc/2180/task/2180/fd: Permission denied
find: /proc/2180/task/2180/fdinfo: Permission denied
find: /proc/2180/fd: Permission denied
find: /proc/2180/fdinfo: Permission denied
find: /proc/2181/task/2181/fd: Permission denied
find: /proc/2181/task/2181/fdinfo: Permission denied
find: /proc/2181/fd: Permission denied
find: /proc/2181/fdinfo: Permission denied
find: /proc/2182/task/2182/fd: Permission denied
find: /proc/2182/task/2182/fdinfo: Permission denied
find: /proc/2182/fd: Permission denied
find: /proc/2182/fdinfo: Permission denied
find: /proc/2183/task/2183/fd: Permission denied
find: /proc/2183/task/2183/fdinfo: Permission denied
find: /proc/2183/fd: Permission denied
find: /proc/2183/fdinfo: Permission denied
find: /proc/2186/task/2186/fd: Permission denied
find: /proc/2186/task/2186/fdinfo: Permission denied
find: /proc/2186/fd: Permission denied
find: /proc/2186/fdinfo: Permission denied
find: /proc/2234/task/2234/fd: Permission denied
find: /proc/2234/task/2234/fdinfo: Permission denied
find: /proc/2234/fd: Permission denied
find: /proc/2234/fdinfo: Permission denied
find: /proc/2242/task/2242/fd: Permission denied
find: /proc/2242/task/2242/fdinfo: Permission denied
find: /proc/2242/fd: Permission denied
find: /proc/2242/fdinfo: Permission denied
find: /proc/2251/task/2251/fd: Permission denied
find: /proc/2251/task/2251/fdinfo: Permission denied
find: /proc/2251/fd: Permission denied
find: /proc/2251/fdinfo: Permission denied
find: /proc/2264/task/2264/fd: Permission denied
find: /proc/2264/task/2264/fdinfo: Permission denied
find: /proc/2264/fd: Permission denied
find: /proc/2264/fdinfo: Permission denied
find: /proc/2273/task/2273/fd: Permission denied
find: /proc/2273/task/2273/fdinfo: Permission denied
find: /proc/2273/fd: Permission denied
find: /proc/2273/fdinfo: Permission denied
find: /proc/2274/task/2274/fd: Permission denied
find: /proc/2274/task/2274/fdinfo: Permission denied
find: /proc/2274/fd: Permission denied
find: /proc/2274/fdinfo: Permission denied
find: /proc/2285/task/2285/fd: Permission denied
find: /proc/2285/task/2285/fdinfo: Permission denied
find: /proc/2285/fd: Permission denied
find: /proc/2285/fdinfo: Permission denied
find: /proc/2293/task/2293/fd: Permission denied
find: /proc/2293/task/2293/fdinfo: Permission denied
find: /proc/2293/fd: Permission denied
find: /proc/2293/fdinfo: Permission denied
find: /proc/2345/task/2345/fd: Permission denied
find: /proc/2345/task/2345/fdinfo: Permission denied
find: /proc/2345/fd: Permission denied
find: /proc/2345/fdinfo: Permission denied
find: /proc/2391/task/2391/fd: Permission denied
find: /proc/2391/task/2391/fdinfo: Permission denied
find: /proc/2391/fd: Permission denied
find: /proc/2391/fdinfo: Permission denied