Fixed several broken links

This commit is contained in:
Brandon Rozek 2022-12-05 12:07:22 -05:00
parent e55a365666
commit f0eb3f37d8
5 changed files with 6 additions and 4 deletions

View file

@ -23,7 +23,7 @@ Though that begs the question, what is sufficiently complicated? Here are some t
- I believe `bc` is the easiest command to use to process arithmetical expressions. Though this also then involves constructing strings to pass into bc. For example: `result=$(echo "1 + 5" | bc)`
- Anything requiring abstract data types
- (Associative) arrays in bash are scary to me
- Slawomir's functional programming in [bash library](https://github.com/ssledz/bash-fun) makes it more bearable. ([My fork](https://github.com/Brandon-Rozek/bashfun))
- Slawomir's functional programming in [bash library](https://github.com/ssledz/bash-fun) makes it more bearable. ([My fork](https://github.com/Brandon-Rozek/bash-fun))
- Argument Parsing
- Attempted to [parse arguments in bash](/blog/bashpartialargparse/), but [parsing arguments in Python](/blog/python-argpase/) is much cleaner to me.