New Episode: hpr4088 :: Today I Learnt more Bash tips
Hosted by Some Guy On The Internet on 2024-04-03 is flagged as Clean and is released under a CC-BY-SA license.
Personalize Your BASH Prompt in Linux: Add Colors and Styles to Beautify Your Command Prompt #Bash #BashPrompt #Bashtips #Shell #Linuxshell #Linuxhowto #Linuxtips #Linux
https://ostechnix.com/how-to-customize-bash-prompt-in-linux/
How To Rename Files Without Typing Full Name Twice In Linux #Bashscript #Bashtips #Bash #Linuxtips #Linuxcommands #Linux #Commandline #CLI
https://ostechnix.com/bash-tips-rename-files-without-typing-full-name-twice-in-linux/
cli magic 2 🔮 on truthiness and exit statuses
https://arden.social/post/703932591793979392/cli-magic-2-now-with-more-operators-and-some
sneak peek of my next bash cutesheet.
[Bash Tips] How To cd and ls in one command #BashTips #cd #ls #ChangeDirectory #ListFiles #Linuxtips #Linuxcommands #Linux #Commandline
https://ostechnix.com/bash-tips-how-to-cd-and-ls-in-one-command/
How To Automatically Switch To A Directory Without Using Cd Command In Linux #Bashtips #Bash #Autocd #CdCommand #ChangeDirectory #Linuxtips #Linuxcommands #Linuxhowto #Linux #Commandline #CLI
https://ostechnix.com/automatically-switch-directory-without-using-cd-command/
How To Repeat A Command Until It Succeeds In Linux #Bashloops #WhileLoop #UntilLoop #Bashtips #Bash #LinuxCommands #Linux
https://ostechnix.com/how-to-repeat-a-command-until-it-succeeds-in-linux/
Bash Heredoc Tutorial For beginners #Heredoc #HereDocuments #Bash #BashRedirection #Shell #ShellScripting #Script #Linux #Linuxhowto #Bashtips #Commandline #CLI
https://ostechnix.com/bash-heredoc-tutorial/
Fix “Exec format error” When Running Scripts With run-parts Command #ShellScript #Bash #Linux #Linuxtips #Bashtips
https://ostechnix.com/fix-exec-format-error-when-running-scripts-with-run-parts-command/
Rename Files Without Typing Full Name Twice In Linux #Bash #BashTips #Shell #Linux #Linuxcommands #Linuxtips
https://ostechnix.com/bash-tips-rename-files-without-typing-full-name-twice-in-linux/
.bashrc
function multiresolv {
dig $@ | sed -n '/;; ANSWER SECTION:/{n;p;}' | awk '{print substr($1, 1, length($1)-1)"\t"$5}'
}
$ source .bashrc
$ multiresolv domainame1.tld domainame2.tld domainame3.tld domainame4.tld
domainame1.tld IP1
domainame2.tld IP2
domainame3.tld IP3
domainame4.tld IP4