shell / bash / script api ?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting shell / bash / script api ?
# 1  
Old 12-11-2008
shell / bash / script api ?

Hi is there a good dokumentation for shell scripting ?
like the api in java ?

didnt find a good one yet

Last edited by Turrican; 12-11-2008 at 11:25 AM..
# 2  
Old 12-11-2008
Hammer & Screwdriver Several posts on books already on this forum

Please search the forums before posting questions.
I'm new to Unix. Which books should I read? - The UNIX and Linux Forums
# 3  
Old 12-11-2008
i am not looking for a book Smilie i am looking for a webpage with informations about the functions /methodes like the java api doc.
# 4  
Old 12-11-2008
something like this (among thousands of others)?
# 5  
Old 12-11-2008
not really a list of options with links to man pages or something like that
so i can se the dokumentation of each funktion
# 6  
Old 12-11-2008
Quote:
Originally Posted by Turrican
Hi is there a good dokumentation for shell scripting ?
like the api in java ?

didnt find a good one yet

Which ones don't you like?

Have you read the man page?

There is a list of links to shell resources on my web site.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed ? Is there any way to get the script names for the process command ? --- Post updated at 08:39 AM --- in KSH (Korn Shell), my command output shows the script names but when run in the Bash Shell... (3 Replies)
Discussion started by: i4ismail
3 Replies

2. Shell Programming and Scripting

Different behavior between bash shell and bash script for cmd

So I'm trying to pass certain json elements as env vars and use them later on in a script. Sample json: JSON='{ "Element1": "file-123456", "Element2": "Name, of, company written in, a very weird way", "Element3": "path/to/some/file.txt", }' (part of the) script: for s... (5 Replies)
Discussion started by: da1
5 Replies

3. Shell Programming and Scripting

Help with Bash shell script

Hi All, I have a script which as below #!/bin/bash for i in `cat servers` do ssh uname@$i "df -t xfs --total | grep total"; done > out.txtOutput as below -------------- total 140583991104 118622795524 21961195580 85% - total 140583991104 112888595524 27695395580 ... (4 Replies)
Discussion started by: npk
4 Replies

4. Shell Programming and Scripting

Bash script - cygwin (powershell?) pull from GitHub API Parse JSON

All, Have a weird issue where i need to generate a report from GitHub monthly detailing user accounts and the last time they logged in. I'm using a windows box to do this (work issued) and would like to know if anyone has any experience scripting for GitAPI using windows / cygwin / powershell?... (9 Replies)
Discussion started by: ChocoTaco
9 Replies

5. Shell Programming and Scripting

Using Twitter search API to find Vine videos - with UNIX Shell Scripts

I wish to search most recent Vine videos with a search string. On Twitter web interface I search "vine.co rammstein". Output should be Vine URL for example https://vine.co/v/hAF6iXiFUbr, also short https://t.co/QxmaJSBF9D is OK Never used Web APIs with Shell Scripts. (2 Replies)
Discussion started by: slashdotweenie
2 Replies

6. Shell Programming and Scripting

Need to run an API from a script and extract fields from output of API

Hi, I need to call an API (GetUsageDetails)from inside a shell script which takes an input argument acct_nbr. The output of API will be like : <usageAccum accumId="450" accumCaptn="PM_125" inclUnits="1410.00" inclUnitsUsed="744.00" shared="true" pooled="false" prorated="false"... (1 Reply)
Discussion started by: rkrish
1 Replies

7. Shell Programming and Scripting

Bash shell script to check if script itself is running

hi guys we've had nagios spewing false alarm (for the umpteenth time) and finally the customer had enough so they're starting to question nagios. we had the check interval increased from 5 minutes to 2 minutes, but that's just temporary solution. I'm thinking of implementing a script on the... (8 Replies)
Discussion started by: hedkandi
8 Replies

8. Shell Programming and Scripting

Bash Shell Script

HELP!My program ends after entering one choice---need help making it take multiple inputs,instead of terminating after displaying just one #!/bin/bash# Crude address databaseclear # Clear the screen.echo " Contact List"echo " ------- ----"echo "Choose one of the following... (6 Replies)
Discussion started by: help123
6 Replies

9. Shell Programming and Scripting

Help with bash shell script

Hi, I have a file in which records contains non ascii characters. The records are comma delimited and quoted. The non ascii characters are found in a particular column. Example records "YY","AK000021","Ã","IO","PP" "Y1","AK000022","Ã","PO","PP" "Y2","AK000022","Ã","PO","PP" I need to... (2 Replies)
Discussion started by: akshu.agni
2 Replies

10. Shell Programming and Scripting

bash shell script

i want to monitor which users logged in to unix system if users who logged in more than once then store to a text file . any idea? (2 Replies)
Discussion started by: CheeSen
2 Replies
Login or Register to Ask a Question