Skip to content

Latest commit

 

History

History
230 lines (189 loc) · 12 KB

bash.md

File metadata and controls

230 lines (189 loc) · 12 KB

Bookmarks tagged [bash]

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


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


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

!number_in_history (e.g. !667)


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

Try using RUN /bin/sh instead of bash.


https://tldr.sh/

Simplified and community-driven man pages


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

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

How to install git completion on different platforms...


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


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

Use find: ...


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:

...


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

(tar.gz)


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


http://shellscript.sunone.me

SUNONE


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

Joshua Levy, Hayato Matsuura(翻訳)


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

GreyCat, @yakstcom(翻訳)


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

id:nattou_curry


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

Mike G, 千旦裕司(翻訳)


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

(PDF)


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


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

(PDF)


http://linuxcommand.org/lc3_writing_shell_scripts.php

William E. Shotts, Jr.


http://www.bash.academy


http://slackbook.org


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


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


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

Paul Cobbaut (PDF)


https://launchschool.com/books/command_line

Launch School


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


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


http://conqueringthecommandline.com/book/frontmatter

Mark Bates


http://mywiki.wooledge.org/BashGuide


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


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


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

M. Garrels


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

M. Cooper


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.