Linux shell scripts

  • Thread starter Analysis
  • Start date
  • #1
Analysis
55
0
Hai'
I am new to the Linux os & i am eager to learn shell scripts for my engineering applications.
How to learn step by step any suggestions?

I am not aware any programming languages.

For my immediatiae application is

We have installed custom build software in one particular folder,
exe. file avalible in subfolder file i.e end of 5 sub folder
To execute this software cannot installed icon in desktop so every time by using terminal using change directories command we are executing
also while system boot up license file doesnot intilized automatically has to be given command everyday .Remembering the commands is somewhat uneasy.

Beyond this what all are the applications we can do by using linux shell scripts?I am engineering backround so i want to see any my engineering applications can i utlize?

Thanks
Prakash
 

Answers and Replies

  • #2
ranger
Gold Member
1,685
2
Linux Bash scripting is pretty powerful in the realm of system administration and automating system tasks. If you wish to learn some sort of scripting language geared toward engineering and scientific computing in general; I suggest that you invest your time in learning a language like python instead.

We have installed custom build software in one particular folder,
exe. file avalible in subfolder file i.e end of 5 sub folder
To execute this software cannot installed icon in desktop so every time by using terminal using change directories command we are executing
also while system boot up license file doesnot intilized automatically has to be given command everyday .Remembering the commands is somewhat uneasy.
You can pretty much pack all those requirements into one script file:
1) Load license file
2) Change to directory where binary executable is.
3) And finally run it.

A bash script for this task would be fairly simple to make. Basically a bash script is a file that contains a list of commands in the order you'd like them to be executed.

As simple bash script would be like this:
Code:
#!/bin/bash
echo "hello, $USER"
echo "Listing files in  $PWD"
ls -al
Line one tells the system that this file should be run as a bash script.
Lines two and three are basically printing messages to the stdout.
Line four it the command that needs to be executed.

So all you need to do in mod the above script and place what ever commands you usually type.
 
  • #3
neutrino
2,091
2
All the guides you'll need for an introduction to Linux and shell scripts
http://www.tldp.org/guides.html
 

Suggested for: Linux shell scripts

  • Last Post
Replies
12
Views
423
  • Last Post
Replies
18
Views
605
Replies
3
Views
385
Replies
26
Views
849
Replies
6
Views
835
  • Last Post
Replies
2
Views
665
Replies
4
Views
668
  • Last Post
Replies
18
Views
1K
Replies
18
Views
940
Replies
21
Views
315
Top