Various scripts that I use/used for common tasks
Go to file
2024-10-28 10:53:24 +05:30
dhcp-log commit 2024-10-26 16:42:22 +05:30
ldap_basic Better README and comments 2024-10-28 10:53:24 +05:30
randomize-ip-mac commit 2024-10-26 16:42:22 +05:30
.gitignore Initial commit 2024-10-26 10:17:08 +00:00
LICENSE Initial commit 2024-10-26 10:17:08 +00:00
README.md Better README and comments 2024-10-28 10:53:24 +05:30

Miscellaneous scripts

Various scripts I use/used for common tasks

Shell scripts

Most of these shell scripts are made for posix shells, and tested only on bash and zsh, unless specified. Test on other shells and modify at your own risk.
Note that these two are equivalent:

bash scriptname.sh  # Use your shell in place of bash
./scriptname.sh     # Requires +x permission for execution

Since bash and zsh are mostly identical in synatx, almost all scripts written for either of these work for both of them, and rarely differ in functionality, like the () expansions.
Quick bash reference: bash cheatsheet
Zsh reference: zsh cheatsheet

Other scripts

Other scripts, like the python scripts, are not limited to specific shells, but may require minor changes if they execute shell commands.