r_bash – Telegram
Bash noscript says file not found even though the filename is the noscript itself
https://redd.it/10lpwi9
@r_bash
The Ultimate Coding Pal (AI-Powered)

Hey fellas 👋

I wrote CodePal.ai \- A free AI-powered service that provides many coding tools for coders and non-coders to make their life easier. It can code, review code, simplify code, find bugs,, and many more cool features.

My mission is to make coding easier, more accessible and fun for coders and non-coders.

I use this myself to perfect my code pretty often and I find it handy in many cases.

I've put many hours into this and would love to hear your feedback on it ❤️

Thank you!

https://redd.it/10ltuyv
@r_bash
Books or Websites to learn Bash noscripting

Hi I am newbie to Linux, I would like to learn Bash noscripting


Please suggest me some good resources.

https://redd.it/10ltudi
@r_bash
stail.sh - Short Tail

This is a fairly short (59 LOC) utility noscript that allows you to tail the output of a command, but while only showing the last -n (default 5) lines of output without scrolling the output buffer. It will trim lines to the terminal width (rather than wrap them) to avoid splitting terminal escape sequences. You can also optionally -p PREFIX each line of output. Finally, it (by default) removes blank/whitespaces lines, but they can be preserved with -w.

Video here.

https://reddit.com/link/10m102l/video/0y2nzxf22gea1/player

Code on GitHub Gist.

https://redd.it/10m102l
@r_bash
shell...???

What is the website I'm thinking of!!!??? We use it all the time for bash noscripting, and I can not figure it outt. I'm pretty sure it's shell something, but nothing so far sounds right. Can anyone help me or at least explain what this is doing, I get the general idea, but I'm curious how it helps make noscripts ready for reddit.

echo ; sed 's/^/ /' noscript.sh

https://redd.it/10mepie
@r_bash
Help with a scheduled (cron) bash noscript

Hi everyone, I’m new to this sub so I apologize in advance for any mistakes.

I created a noscript that checks if a python application is running and if not starts it. This is what it looks like:

#!/bin/bash
if pgrep -x "python3.10" > /dev/null
then
echo "Application is running."
else
source dev/bin/activate
cd dev
nohup python3.10 main.py > output.log 2>&1 &
echo "Application restarted."
fi`

This code works perfectly fine when I run it from the terminal, however, when I try to run it using cron I get the correct output but main.py doesn’t actually start.

I’m not sure what I’m doing wrong. Any help would be appreciated!

https://redd.it/10mjh9x
@r_bash
Bashkit V1

The first public release of BashkitV1 is now available with the URL

https://bashkit.wuage.io

and from the main branch of the Bashkit git repository

(https://github.com/Wuageorg/bashkit).

Bashkit is the Wuage’s shell noscripting framework. It is a collection of pure bash functions along with a lightweight noscripting model that, we believe, remediate some of the Bash quirks.

Out of the box, It supports advanced yet classical logging (including NDJSON), fail fast noscripting pattern (less to none `set -e` side effects), coloured outputs and more. It can easily be extended by adding modules to accommodate various use cases.

For more information on the features of Bashkit that are new to this type of shell noscripts, see the file `doc/manual.pdf’. There is also Unix-style man pages for every released function. The man pages are the definitive denoscriptions of the framework’s features.

The framework is released under APACHE LICENSE, VERSION 2.0.

The release tar file includes the formatted documentation (pdf).

Please use https://github.com/Wuageorg/bashkit/issues to report bugs with this version. It complements at least bash 5.x and can not be used without.

Happy noscripting!

The Wuage Team

Jan. 2023

https://redd.it/10moz5g
@r_bash
Echo commands IN variable

How would I place echo commands inside a variable? I am attempting to send an email with postfix under certain circumstances. For example:

OUTPUT=$(MP4Box -info $INPUTFILE 2>&1)
HTML="<pre style=\"white-space: pre-wrap; word-break: keep-all; background-color: whitesmoke;\"><code>${OUTPUT}</code></pre>"

if [[ $(MP4Box -info $INPUT
FILE 2>&1) =~ "Incomplete" ]];
then
(
echo "From: from@email.com";
echo "To: send@email.com";
echo "Subject: Transfer Interrupted";
echo "Content-Type: text/html";
echo "MIME-Version: 1.0";
echo "";
echo -e "The mp4 transfer was interrupted and did not complete." \
"The output is as follows:\n\n" \
"${HTML}"
) | sendmail -t
elif [ $(MP4Box -info $INPUT_FILE 2>&1) =~ "Movie Info" ];
then
(
echo "From: from@email.com";
echo "To: send@email.com";
echo "Subject: Transfer complete.";
echo "Content-Type: text/html";
echo "MIME-Version: 1.0";
echo "";
echo -e "The mp4 transfer is complete." \
"The output is as follows:\n\n" \
"${HTML}"
) | sendmail -t
else
(
echo "From: from@email.com";
echo "To: send@email.com";
echo "Subject: Check on Transfer.";
echo "Content-Type: text/html";
echo "MIME-Version: 1.0";
echo "";
echo -e "Something could be wrong. Manually check the mp4." \
"The output is as follows:\n\n" \
"${HTML}"
) | sendmail -t
fi

I would like to simplify this with variables. When I try, I get the postfix error No recipient addresses found in message header. For example:

OUTPUT=$(MP4Box -info $INPUTFILE 2>&1)
HTML="<pre style=\"white-space: pre-wrap; word-break: keep-all; background-color: whitesmoke;\"><code>${OUTPUT}</code></pre>"
EMAILHEADER=$(echo "From:
from@email.com";
echo "To:
send@email.com";
echo "Subject: ${SUBJECT}";
echo "Content-Type: text/html";
echo "MIME-Version: 1.0";
echo "";)

if [[ $(MP4Box -info $INPUT
FILE 2>&1) =~ "Incomplete" ]];
then
(
$EMAILHEADER
echo -e "The mp4 transfer was interrupted and did not complete." \
"The output is as follows:\n\n" \
"${HTML}"
) | sendmail -t
elif [ $(MP4Box -info $INPUT_FILE 2>&1) =~ "Movie Info" ];
then
(
$EMAILHEADER
echo -e "The mp4 transfer is complete." \
"The output is as follows:\n\n" \
"${HTML}"
) | sendmail -t
else
(
$EMAILHEADER
echo -e "Something could be wrong. Manually check the mp4." \
"The output is as follows:\n\n" \
"${HTML}"
) | sendmail -t
fi

I know I still have to define $SUBJECT and will get to that, but I at least want to get the basics of this working first.

I have one additional question... how can I break up the HTML= line (within the noscript)? It's long and I want to make it two lines to make the noscript more readable. So instead of:

HTML="<pre style=\"white-space: pre-wrap; word-break: keep-all; background-color: whitesmoke;\"><code>${OUTPUT}</code></pre>"

I want something like:

HTML="<pre style=\"white-space: pre-wrap; word-break: keep-all;" \
"background-color: whitesmoke;\"><code>${OUTPUT}</code></pre>"

But this fails for me (doesn't print out in the email).

https://redd.it/10mwah8
@r_bash
cannot run a noscript in /app directory

Trying to run a bash noscript. when i save it in my home, it can run just fine but when I move the noscript to a /app location, the noscript does not run. All permissions are ok but when i run the noscript, it does not run and also does not return an error. I also noticed that the color code I have in the noscript in my home is not appearing in when i have a noscript in the /app location. please help if you have any idea what the issue is here.

https://redd.it/10mvsvh
@r_bash
text editor in bash!

https://github.com/Agb43/text-editor.git

&#x200B;

I decided to write a terminal based text editor in bash for fun. Considering that i've never taken a coding class in my life, i'm pretty proud of it, even if inserting whitespace via blank echos is incredibly bad im sure.

https://redd.it/10n6u6m
@r_bash
Changing placeholder denoscription via sed

Hi! As an input for sed program I have smth like this: {bool some flag denoscription} (it's a part of an input string to be more precise) where:

- bool is a placeholder type
- some flag denoscription is it's denoscription

How do I replace all such placeholders to this {{some_flag_denoscription}}? I don't know how to replace spaces between 3 denoscription words with underscores. What sed technique should I use? I wanna transform some flag denoscription in a such way not to broke the whole placeholder. Another difficulty is that this placeholder can appear in any place in a command invocation example like some_executable --dark {bool whether to enable dark more} --colorize {bool whether to colorize files}. I need to know how to do this to fix my noscript.

https://redd.it/10nblyy
@r_bash
Beginner having trouble using variables as literal strings

Hello,

I'm new to Bash, and I've been hammering my way through issues with the help of ChatGPT, but it's running me in circles on this one.

I'm using Curl to make a request to Pushover's API. Many of the options that I call Curl with are exactly the same, so I thought that I'd put them in a variable to make things easier. I know that In an actual request, I would have to include more options, but I wanted to trim this example down.



po_token="ExampleToken"
po_user="ExampleUserKey"
curl_ops='-s -o "/dev/null" --connect-timeout "5" --retry "6" --retry-delay "600" -F "token=$po_token" -F "user=$po_user" "https://api.pushover.net/1/messages.json"'
curl $curl_ops



It seems that everything in my "curl_ops" variable is being passed as a single argument instead of a literal string, and I'm certain it has to do with my usage of quotes, but I have no idea how to fix it. The only noscripting language that I'm familiar with is AutoIt, and Bash seems to handle this kind of thing very differently. I was hoping someone here may have some suggestions.

Thanks

https://redd.it/10nbdv5
@r_bash
how to supress this

hi

im using psexec example PSEXEC \\\\workstation64 x:\\runme.bat


noscripts runs fine how ever i want to supress the displaying of the exit code here is the output

at exited on srv1 with error code 0.

https://redd.it/10nl7yc
@r_bash
Is there a difference between " tr a-z n-za-m " and " tr 'a-z' 'n-zam' " ?

Both provide the same output, but I'm seeing online people are recommending using " tr '[a-z\]' '[n-za-m\]' "

Why is that?

https://redd.it/10ny8a4
@r_bash
Linux bash practice site

HI, I am preparing for OSCP and hence I am learning bash.
Can someone please suggest me a best place to practice bash(For linux).
Any online link would be helpfull

https://redd.it/10o0z6g
@r_bash