tutorials:bash_scripting:start
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:bash_scripting:start [2012/02/24 17:36] – rmiles | tutorials:bash_scripting:start [2017/10/12 21:58] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 5: | Line 5: | ||
No matter how many times I read bash scripting manuals and tutorials it was all just a bunch of hello worlds and loops that count to ten. Nothing much stuck until I had something that I wanted to do. | No matter how many times I read bash scripting manuals and tutorials it was all just a bunch of hello worlds and loops that count to ten. Nothing much stuck until I had something that I wanted to do. | ||
- | It was then that I began learning, remembering what I learned and appreciating how useful bash scripting | + | It was then that I began learning, remembering what I learned and appreciating how useful bash scripting |
- | There are any number of bash scripting references available I do not intend to write another | + | There are any number of bash scripting references available. I do not intend to write another. Nor do I presume to be an expert at bash scripting. I learned what I know by working through other folk's scripts and then filling in the blanks from the man pages and the net. |
In the following sections I will present scripts that I have written, explain how they work and in so doing perhaps provide the uninitiated with enough of an understanding of bash scripting to inspire them to open up an editor and get their hands dirty. | In the following sections I will present scripts that I have written, explain how they work and in so doing perhaps provide the uninitiated with enough of an understanding of bash scripting to inspire them to open up an editor and get their hands dirty. | ||
Line 13: | Line 13: | ||
All the scripts I present in this series work. Feel free to copy them, run them on your machine and have a play at modifying them to see what happens. Any text editor will do. I use //geany// when working GUI and //mcedit// (because I'm lazy) when I am working CLI. Both of these editors support syntax highlighting which is very helpful when reading and editing scripts. If you are using KDE try using //kate//. | All the scripts I present in this series work. Feel free to copy them, run them on your machine and have a play at modifying them to see what happens. Any text editor will do. I use //geany// when working GUI and //mcedit// (because I'm lazy) when I am working CLI. Both of these editors support syntax highlighting which is very helpful when reading and editing scripts. If you are using KDE try using //kate//. | ||
- | You will have to make your scripts executable. Use //chmod +x [scriptname]// | + | You will have to make your scripts executable. Use //chmod +x [scriptname]// |
I keep my scripts in /// | I keep my scripts in /// | ||
Line 19: | Line 19: | ||
You can test a script for errors without running it with the command //bash -n [scriptname]// | You can test a script for errors without running it with the command //bash -n [scriptname]// | ||
- | I suggest that these articles be read in order as each article will assume that the reader understands what has been introduced in the previous article(s). I will explain only what is required to understand how the scripts work. For further information check the man pages, online resources, etc. | + | I suggest that these articles be read in order as each article will assume that the reader understands what has been introduced in the previous article(s). I will explain only what is required to understand how a script works. For further information check the man pages, online resources, etc. |
---- | ---- | ||
Line 25: | Line 25: | ||
Rick Miles | Rick Miles | ||
- | 24/02/2012 | + | |
+ | 24 Feb, 2012 |
tutorials/bash_scripting/start.1330065380.txt.gz · Last modified: 2017/10/12 21:58 (external edit)