bash script

  1. I

    Shell or bash script to open multiple URLs saved in a .TXT file in a browser from the terminal?

    Is there a shell or bash script to open multiple URLs saved in a .TXT file in a browser from the terminal? I know that can be done with "firefox $(cat url.txt)", but: I need something that saves me time by opening tabs of a maximum of 10 to 10 urls (because of RAM) from a list of 100 urls or...
  2. S

    HELP! bash script for linux

    hello, i have to do this task but i don't know how i need help thank you! write a bash script which checks periodically executable has a live process
  3. mobulos

    SinusBot Multiscript

    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...
  4. P

    for loop with multiple variables output

    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...
  5. Z

    Check if background process is running or not

    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"...
  6. L

    Need help with Bash

    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...
  7. iridakos

    CLI for daily notes

    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...
  8. A

    Need help with time conditions in BASH scripts

    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...
  9. P

    Remove/delete not working in bash script

    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...
Top