bash.md

July 15, 2021 · View on GitHub

Bookmarks tagged [bash]

www.codever.land/bookmarks/t/bash

How to find out line-endings in a text file?

https://stackoverflow.com/questions/3569997/how-to-find-out-line-endings-in-a-text-file

Describes how to find / display line endings in files on linux system.


GitHub - jlevy/the-art-of-command-line: Master the command line, in one page

https://github.com/jlevy/the-art-of-command-line

Master the command line, in one page. Contribute to jlevy/the-art-of-command-line development by creating an account on GitHub.


Devhints — TL;DR for developer documentation

https://devhints.io/

A ridiculous collection of web development cheatsheets · One-page guide to


Basic Linux Commands - Bash Command Line Tips You Should Know

https://www.freecodecamp.org/news/basic-linux-commands-bash-tips-you-should-know-2/


Dotfiles Are Meant to Be Forked

http://zachholman.com/2010/08/dotfiles-are-meant-to-be-forked/

I’m a big fan of customizing your dotfiles. “Dotfiles” are the funky little files in your *nix-based home directory that allow you to customize your nerdery: change how your prompt looks, set up your ...


bash - Is there any way to execute commands from history? - Unix & Linux Stack Exchange

https://unix.stackexchange.com/questions/275053/is-there-any-way-to-execute-commands-from-history/27...

!number_in_history (e.g. !667)


How to use bash with an Alpine based docker image? - Stack Overflow

https://stackoverflow.com/questions/40944479/how-to-use-bash-with-an-alpine-based-docker-image/40944...

Try using RUN /bin/sh instead of bash.


TLDR pages

https://tldr.sh/

Simplified and community-driven man pages


Nice dotfiles example

https://github.com/jessfraz/dotfiles

My dotfiles. Buyer beware ;)


https://askubuntu.com/questions/522051/how-to-list-all-symbolic-links-in-a-directory

find . -type l -ls

To only process the current directory:

find . -maxdepth 1 -type l -ls

Install Bash git completion

https://github.com/bobthecow/git-flow-completion/wiki/Install-Bash-git-completion

How to install git completion on different platforms...


How to compare differences between directories (linux) - Server Fault

https://serverfault.com/questions/59108/how-to-compare-differences-between-directories-linux

So to compare directories: diff --brief -r dir1 dir2

To compare files side by side: diff --side-by-side file1 file2


macos - Linux - Find Files with Name Containing String - Stack Overflow

https://stackoverflow.com/questions/11328988/linux-find-files-with-name-containing-string

Use find: ...


git - Remove local branches no longer on remote - Stack Overflow

https://stackoverflow.com/questions/7726949/remove-local-branches-no-longer-on-remote

To give yourself the opportunity to edit the list before deleting branches, you could do the following in one linee:

...


Kurs Bash'a

http://dief.republika.pl/kursbasha.tar.gz

(tar.gz)


Advanced Bash-Scripting Guide

http://rus-linux.net/MyLDP/BOOKS/abs-guide/flat/abs-book.html


UNIX & Linux コマンド・シェルスクリプト リファレンス

http://shellscript.sunone.me

SUNONE


The Art of Command Line

https://github.com/jlevy/the-art-of-command-line/blob/master/README-ja.md

Joshua Levy, Hayato Matsuura(翻訳)


Bashのよくある間違い

https://yakst.com/ja/posts/2929

GreyCat, @yakstcom(翻訳)


Bash 基礎文法最速マスター

http://d.hatena.ne.jp/nattou_curry_2/20100131/1264910483

id:nattou_curry


BASH Programming - Introduction HOW-TO

http://linuxjf.osdn.jp/JFdocs/Bash-Prog-Intro-HOWTO.html

Mike G, 千旦裕司(翻訳)


Guida avanzata per la bash

http://www.dmi.unict.it/diraimondo/web/wp-content/uploads/classes/so/mirror-stuff/abs-guide.pdf

(PDF)


Guide avancé d'écriture des scripts Bash

http://abs.traduc.org/abs-fr/


Bash očima Bohdana Milara

http://i.iinfo.cz/files/root/k/bash_ocima_bohdana_milara.pdf

(PDF)


Writing Shell Scripts

http://linuxcommand.org/lc3_writing_shell_scripts.php

William E. Shotts, Jr.


The Bash Academy

http://www.bash.academy


Slackbook

http://slackbook.org


Linux Shell Scripting Tutorial (LSST) v2.0

https://bash.cyberciti.biz/guide/Main_Page


Linux Shell Scripting Tutorial - A Beginner's Handbook

http://www.freeos.com/guides/lsst/


Linux Fundamentals

http://linux-training.be/linuxfun.pdf

Paul Cobbaut (PDF)


Introduction to the Command Line

https://launchschool.com/books/command_line

Launch School


Google Shell Style Guide

https://google.github.io/styleguide/shell.xml


Getting Started with BASH

http://www.hypexr.org/bash_tutorial.php


Conquering the Command Line

http://conqueringthecommandline.com/book/frontmatter

Mark Bates


BashGuide

http://mywiki.wooledge.org/BashGuide


Bash Reference Manual

http://www.gnu.org/software/bash/manual/bashref.html


BASH Programming

http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html


Bash Guide for Beginners

http://www.tldp.org/LDP/Bash-Beginners-Guide/html/

M. Garrels


Advanced Bash-Scripting Guide

http://tldp.org/LDP/abs/html/

M. Cooper


Bash Reference Manual: Top

https://www.gnu.org/software/bash/manual/html_node/index.html

What is bash? This manual is meant as a brief introduction to features found in Bash. The Bash manual page should be used as the definitive reference on shell behavior.