René's URL Explorer Experiment


Title: Shell Features - Linux Command Line Computing

Open Graph Title: Linux Command Line Computing

Description: Linux Command Line and Shell Scripting for beginner to intermediate level users

Open Graph Description: Linux Command Line and Shell Scripting for beginner to intermediate level users

Opengraph URL: https://learnbyexample.github.io/cli-computing/

X: @learn_byexample

direct link

Domain: learnbyexample.github.io

Nonetext/html; charset=utf-8
theme-color#ffffff
og:typewebsite
og:imagehttps://learnbyexample.github.io/cli-computing/images/cli_computing_ls.png
og:image:width1280
og:image:height720
twitter:cardsummary_large_image

Links:

Coverhttps://learnbyexample.github.io/cli-computing/cover.html
Buy PDF/EPUB versionshttps://learnbyexample.github.io/cli-computing/buy.html
Prefacehttps://learnbyexample.github.io/cli-computing/preface.html
1. Introduction and Setuphttps://learnbyexample.github.io/cli-computing/introduction-setup.html
2. Command Line Overviewhttps://learnbyexample.github.io/cli-computing/command-line-overview.html
3. Managing Files and Directorieshttps://learnbyexample.github.io/cli-computing/managing-files-directories.html
4. Shell Featureshttps://learnbyexample.github.io/cli-computing/shell-features.html
5. Viewing Part or Whole File Contentshttps://learnbyexample.github.io/cli-computing/viewing-part-or-whole-file-contents.html
6. Searching Files and Filenameshttps://learnbyexample.github.io/cli-computing/searching-files-and-filenames.html
7. File Propertieshttps://learnbyexample.github.io/cli-computing/file-properties.html
8. Managing Processeshttps://learnbyexample.github.io/cli-computing/managing-processes.html
9. Multipurpose Text Processing Toolshttps://learnbyexample.github.io/cli-computing/multipurpose-text-processing-tools.html
10. Sorting Stuffhttps://learnbyexample.github.io/cli-computing/sorting-stuff.html
11. Comparing Fileshttps://learnbyexample.github.io/cli-computing/comparing-files.html
12. Assorted Text Processing Toolshttps://learnbyexample.github.io/cli-computing/assorted-text-processing-tools.html
13. Shell Scriptinghttps://learnbyexample.github.io/cli-computing/shell-scripting.html
14. Shell Customizationhttps://learnbyexample.github.io/cli-computing/shell-customization.html
Exercise Solutionshttps://learnbyexample.github.io/cli-computing/exercise-solutions.html
   Source codehttps://github.com/learnbyexample/cli-computing
   My Bloghttps://learnbyexample.github.io/
   My Bookshttps://learnbyexample.github.io/books/
   Twitterhttps://twitter.com/learn_byexample
https://learnbyexample.github.io
https://twitter.com/learn_byexample
https://github.com/learnbyexample/cli-computing
Shell Featureshttps://learnbyexample.github.io/cli-computing/shell-features.html#shell-features
example_fileshttps://github.com/learnbyexample/cli-computing/tree/master/example_files
Quoting mechanismshttps://learnbyexample.github.io/cli-computing/shell-features.html#quoting-mechanisms
bash manualhttps://www.gnu.org/software/bash/manual/bash.html#Quoting
unix.stackexchange: Why does my shell script choke on whitespace or other special characters?https://unix.stackexchange.com/q/131766/109046
bash manual: ANSI-C Quotinghttps://www.gnu.org/software/bash/manual/bash.html#ANSI_002dC-Quoting
Wildcardshttps://learnbyexample.github.io/cli-computing/shell-features.html#wildcards
bash manual: Pattern Matchinghttps://www.gnu.org/software/bash/manual/bash.html#Pattern-Matching
Brace Expansionhttps://learnbyexample.github.io/cli-computing/shell-features.html#brace-expansion
Extended and Recursive globshttps://learnbyexample.github.io/cli-computing/shell-features.html#extended-and-recursive-globs
Shell Customizationhttps://learnbyexample.github.io/cli-computing/shell-customization.html
sethttps://learnbyexample.github.io/cli-computing/shell-features.html#set
bash manual: Set Builtinhttps://www.gnu.org/software/bash/manual/bash.html#The-Set-Builtin
Pipelineshttps://learnbyexample.github.io/cli-computing/shell-features.html#pipelines
Unix Philosophyhttps://learnbyexample.github.io/cli-computing/command-line-overview.html#unix-philosophy
teehttps://learnbyexample.github.io/cli-computing/shell-features.html#tee
Redirectionhttps://learnbyexample.github.io/cli-computing/shell-features.html#redirection
bash manual: Redirectionshttps://www.gnu.org/software/bash/manual/bash.html#Redirections
file descriptorhttps://en.wikipedia.org/wiki/File_descriptor
Redirecting outputhttps://learnbyexample.github.io/cli-computing/shell-features.html#redirecting-output
Redirecting inputhttps://learnbyexample.github.io/cli-computing/shell-features.html#redirecting-input
wikipedia: UUOChttps://en.wikipedia.org/wiki/Cat_(Unix)#Useless_use_of_cat
Useless Use of Cat Awardhttps://porkmail.org/era/unix/award.html
Redirecting errorhttps://learnbyexample.github.io/cli-computing/shell-features.html#redirecting-error
Combining stdout and stderrhttps://learnbyexample.github.io/cli-computing/shell-features.html#combining-stdout-and-stderr
Waiting for stdinhttps://learnbyexample.github.io/cli-computing/shell-features.html#waiting-for-stdin
unix.stackexchange: difference between Ctrl+c and Ctrl+dhttps://unix.stackexchange.com/q/16333/109046
Here Documentshttps://learnbyexample.github.io/cli-computing/shell-features.html#here-documents
bash manual: Here Documentshttps://www.gnu.org/software/bash/manual/bash.html#Here-Documents
stackoverflow: here documentshttps://stackoverflow.com/q/2953081/4082052
Here Stringshttps://learnbyexample.github.io/cli-computing/shell-features.html#here-strings
Further Readinghttps://learnbyexample.github.io/cli-computing/shell-features.html#further-reading
Short introduction to shell redirectionhttps://mywiki.wooledge.org/BashGuide/InputAndOutput#Redirection
Illustrated Redirection Tutorialhttps://web.archive.org/web/20221231120128/https://wiki.bash-hackers.org/howto/redirection_tutorial
stackoverflow: Redirect a stream to another file descriptor using >&https://stackoverflow.com/q/818255/4082052
Difference between 2>&1 >foo and >foo 2>&1https://mywiki.wooledge.org/BashFAQ/055
stackoverflow: Redirect and append both stdout and stderr to a filehttps://stackoverflow.com/q/876239/4082052
unix.stackexchange: Examples for <> redirectionhttps://unix.stackexchange.com/q/164391/109046
Grouping commandshttps://learnbyexample.github.io/cli-computing/shell-features.html#grouping-commands
bash manual: Lists of Commandshttps://www.gnu.org/software/bash/manual/bash.html#Lists
unix.stackexchange: sort but keep header line at the tophttps://unix.stackexchange.com/q/11856/109046
bash manual: Command Execution Environmenthttps://www.gnu.org/software/bash/manual/bash.html#Command-Execution-Environment
List control operatorshttps://learnbyexample.github.io/cli-computing/shell-features.html#list-control-operators
bash manual: Lists of Commandshttps://www.gnu.org/software/bash/manual/bash.html#Lists
Command substitutionhttps://learnbyexample.github.io/cli-computing/shell-features.html#command-substitution
bash manual: Command Substitutionhttps://www.gnu.org/software/bash/manual/bash.html#Command-Substitution
Process substitutionhttps://learnbyexample.github.io/cli-computing/shell-features.html#process-substitution
this unix.stackexchange threadhttps://unix.stackexchange.com/q/609375/109046
Exerciseshttps://learnbyexample.github.io/cli-computing/shell-features.html#exercises
https://learnbyexample.github.io/cli-computing/managing-files-directories.html
https://learnbyexample.github.io/cli-computing/viewing-part-or-whole-file-contents.html
https://learnbyexample.github.io/cli-computing/managing-files-directories.html
https://learnbyexample.github.io/cli-computing/viewing-part-or-whole-file-contents.html

Viewport: width=device-width,initial-scale=1


URLs of crawlers that visited me.