Date: Tue, 23 Dec 2025 00:42:41 +0000
From: "Parker Macdonald (Student)" <[email protected]>
Message-ID:
<by5pr17mb3713c948097123191bf9da28ff...@by5pr17mb3713.namprd17.prod.outlook.com>
| ââââââIf you have a script, lets say it's called loop.sh, and
it contains the following line:
|
| source loop.sh
|
| ââââââWhen you run this script bash will segmentation fault.
| I'd imagine this is caused by a stack overflow, because when
| debugging bash there are 35604 stack frames once it crashes.
Infinite recursion will get you like that all the time. Just don't
do that, and you won't have a problem, the only bug here is in the
script.
kre