https://github.com/tinmarino/bash1
Hacker Meeting Presentation in Dreamlab
https://github.com/tinmarino/bash1
bash programming
Last synced: 5 months ago
JSON representation
Hacker Meeting Presentation in Dreamlab
- Host: GitHub
- URL: https://github.com/tinmarino/bash1
- Owner: tinmarino
- Created: 2021-12-05T16:16:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-21T14:24:22.000Z (over 1 year ago)
- Last Synced: 2025-02-23T21:26:27.062Z (10 months ago)
- Topics: bash, programming
- Language: Shell
- Homepage:
- Size: 563 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# More advanced content
* Vim: Embed markdown syntax in docstring
* Code: finish is prime
* $IFS
* curl https://raw.githubusercontent.com/tinmarino/bash1/master/bask_programming.bash
* have a look at restriced shell (set -r) : https://www.gnu.org/software/bash/manual/html_node/The-Restricted-Shell.html
# Apache tricks
```bash
a2enmod info
apachectl -t -D DUMP_CONFIG
```
# Command
```bash
yes hello world
```
# REPL
bash
python3
ipython3
php -a # do not forget the ";" at end of commands: https://www.php.net/manual/en/features.commandline.php
reply
raku
# Link
* https://github.com/alebcay/awesome-shell?
* https://mywiki.wooledge.org/BashPitfalls
* https://github.com/SArpnt/bytebeat-composer
* Code Golf: https://code.golf/game-of-life#bash
* Roseta code: https://rosettacode.org/wiki/Conway%27s_Game_of_Life
* Top 10 Perl obfus: http://www.perlmonks.org?node_id=1110292
* Advanced Bash Scripting: https://tldp.org/LDP/abs/
* man bash
* Awesome Bash: https://github.com/awesome-lists/awesome-bash
* Bash Pitfalls: http://mywiki.wooledge.org/BashPitfalls
* Bash FAQ by Chet Ramey: http://tiswww.case.edu/php/chet/bash/FAQ
* Pure Bash Bible of course: https://github.com/dylanaraps/pure-bash-bible
* ByteBeat composer: https://sarpnt.github.io/bytebeat-composer
* Sedtris, a tetris code in Sed: https://github.com/uuner/sedtris
* Bash Hacker Wiki (I never browsed it, but it semms like Perlmonks): https://web.archive.org/web/20230406205817/https://wiki.bash-hackers.org/ can also see it here: https://flokoe.github.io/bash-hackers-wiki/
* Bash Source Code: https://flokoe.github.io/bash-hackers-wiki/
* Jupyter Kernels: https://github.com/jupyter/jupyter/wiki/Jupyter-kernels
# Link2, from Bash
### Program
* [Shellcheck](https://github.com/koalaman/shellchec)
* [Vim / ALE](https://github.com/dense-analysis/ale)
* [Vim / Slime](https://github.com/jpalardy/vim-slime)
* [Tmux](https://github.com/tmux/tmux)
* [Dotfiles (my)](https://github.com/tinmarino/vimfiles/tree/master/dotfile)
### Documentation
* [Google Style for BaSh](https://google.github.io/styleguide/shellguide.html)
* [Object Oriented BaSh](https://stackoverflow.com/questions/36771080)
### Code
* [Bash Source code](git://git.savannah.gnu.org/bash.git)
* [Rosetta Code](http://rosettacode.org/wiki/Bourne_Again_SHell)
* [Pure BaSh Bible](https://github.com/dylanaraps/pure-bash-bible)
* [Unicode math operators](http://xahlee.info/comp/unicode_math_operators.html)
* [Bash syntax declaration (Bison)](https://github.com/bminor/bash/blob/bash-5.1/parse.y#L356-L372)
* [Algorithm for prime number](https://programmingpraxis.files.wordpress.com/2012/09/primenumbers.pdf)