Hey guys, I just want to show you my SinusBot Script.
With this Script, you can install 30 SinusBots at the moment (No limit after inquiry).
The script is in German, but I'll do an English Version when there is enough demand.
You can run the Script via
Or have a look at my GitHub
I'm working...
Hi,
I will try to explain my problem as best I can, my English is not good but I will try again.
I am creating a script to list snapshot from Amazon EC2 instances, I search through the Tag "Name" and use the following command.
VOLUMEN_ID=$(aws ec2 describe-instances --filters...
On my Synology DS215j I have a scheduled task, that is executed every 5 minutes and checks, if a specific python script is running:
#!/bin/bash
# Import environment variables ...
. /etc/profile
PYSCRIPT="telegram-bot.py"
if ! ps ax | grep -q "$PYSCRIPT"; then
echo "$PYSCRIPT is running"...
Hello,
Got a Bash Scripting issue. It has to be done with bash.
I've been trying everything from SED to other tricks... Can't seem to get it right.
I need to be able to replace a whole line with a random number and prefix in a text file. Example:
ABCD123456
The letters are the preset prefix...
Hello,
I made a CLI tool to save, access and organize daily notes.
I named it stup, it derives from the Standup meetings since its initial purpose was to cover my need for keeping my Standup notes in a convenient way.
You can find the script and more information about its features on GitHub...
Hi folks, I'm going to need help, and I hope someone can share experience with me.
So, the task is to create a bash script which will parse the JSON data from a REST API (which totals a number of errors at a certain period of time). The output is to get the number of errors in the last 5...
I have a text file(.txt) containing a list of files (one per line) which have to be deleted from a folder on my server. The files to be deleted from the server have to match names of the files in the text file. I wrote a small bash script to do this. Did some research online. When I run the...