top of page

RESOURCES - Bash shell script

 

Memo Bash Shell script:

Bash stands for Bourne-Again SHell.

It is now the most commonly used Unix/Linux shells and mot of the times the default shell in many Linux distributions.

​

​

-----------------------------------------------------------------

​---- Comments:

​

-- type 1: 1 single line

# my sentence

​

-- type2: many lines

<< comment

long

explanation

in 

many lines

acomment

​

-> You could replace "acomment" by any word, and the repetition of "acomment" at the end marks precisely the end of the comment block

​

-- type 3: many lines

: '

long

explanation

in 

many lines

'

​

-----------------------------------------------------------------

​---- Count separators per line:

Please check out this script: numSeparatorChecker.sh

​

​

-----------------------------------------------------------------

​---- File splitter:

Please check out this script: fileSplitter.sh

​

​

​

​

​

bottom of page