All Questions
33 questions
2
votes
2
answers
67
views
Check if program has been installed successfully at a given path
The path is provided as an argument by a Makefile within an install target. The script verifies if the specified path is already included in the system's ...
2
votes
2
answers
113
views
Shell script to download, compile and run Analog Clock in AEC
As some of you know, I have made a programming language, called AEC, and written two compilers for it, one targetting x86 and other targetting WebAssembly. Recently, I have tried to write two shell ...
3
votes
1
answer
84
views
PDFcomp: A PDF comprimer easy script
I developed this script in dead time to be able to compress the PDFs that they send me to university and also to be able to send scans to the various institutions that require formats that do not ...
4
votes
1
answer
153
views
Shell script to download Project Euler problems and combine to PDF
This is a script I created that downloads Project Euler webpages and combines them to PDF. The script also downloads animated files.
...
5
votes
1
answer
261
views
Generating a domain and IP blacklist with Bash
This is a project to pull domain & IP blacklists from various sources and compile them into one list. There are some whitelists included that are applied when a blacklist is built.
It draws ...
6
votes
3
answers
814
views
Updating text in a HTML document with Bash
This is a small script to update my project's README file. Notes on improvements from any aspect are welcome!
Here is the document it updates.
readme.sh (Executed like so: ./readme.sh)
...
2
votes
1
answer
67
views
Testable and self-contained bash script
I wrote a short bash script for a completion check of downloading images.
goal of this code (Added)
I have some downloading content directories. Each of them has a script for downloading images(...
4
votes
1
answer
136
views
The Blacklist: Blocking Malicious domains using Bash
I've made this script to automate blocking some deviant hosts on my router, and was curious if there's anything much else that can be done to make it quicker and more efficient.
Presently I'm ...
2
votes
0
answers
60
views
Outputting a standalone shell script from arguments
I am solving an exercise. Essentially, it's a shell script that takes in file and/or directory arguments and outputs another (standalone) shell script that outputs these files, including any directory ...
2
votes
2
answers
184
views
Shell command to output all plugins that exist across multiple wordpress installations
I'm working on a server and need a complete list of plugins that are installed for all wp installations. I only need to know whether a plugin exists or not, it doesn't matter where it exists.
For ...
3
votes
1
answer
111
views
Bulk File Rename
A function that funnels all filenames into a file and opens that file in vim. The user then changes the names, saves, and quits. Finally the function renames the files in the folder with the new names ...
1
vote
1
answer
154
views
Bash Code to backup the history file in Linux [closed]
How is the logic, efficiency and can it be improved?
This is a snippet from my .bashrc file, I just wrote it.
The code is supposed to do this:
Backup my ...
9
votes
2
answers
3k
views
Count line of code for a JavaScript project
Here is my bash script that I just wrote to count line of code for JavaScript project.
It will list number of:
Comment lines
Blank lines
All lines
Here is my script:
...
3
votes
1
answer
679
views
checksum hash verification functions for bash scripts
just a little script, or a bit of a template of one that I used to submit an assignment.
I believe it all works fine, I just wanted to give it to other people, and get some feedback on it; maybe make ...
8
votes
1
answer
122
views
Squire for your recursive SSH adventures
One day I used to SSH to lots of machines to do some administrative tasks. I constantly used l to list directories just like I do on my own machines. Guess what, ...