APLawrence - Information and Resources for Unix and Linux Systems, Bloggers and the self-employed
RSS Feeds Get APLawrence.com by RSS











(OLDER) <- More Stuff -> (NEWER) (NEWEST)
Home > News Posts > bash scripting ––>Re: Batch for Linux
Printer Friendly Version




News Group Posts

bash scripting




From: cbbrowne@knuth.brownes.org (Christopher Browne)
Newsgroups: comp.os.linux.misc
Subject: Re: Batch for Linux
References: <gZBw5.235089$Z05.2182657@telenews.teleline.es> 
Message-Id: <slrn8s6v59.5m9.cbbrowne@knuth.brownes.org>
X-Abuse-Info: Please be sure to forward a copy of ALL headers
X-Abuse-Info: Otherwise we will be unable to process your complaint properly
Date: Sat, 16 Sep 2000 13:59:41 GMT

Centuries ago, Nostradamus foresaw a time when Stuart Mika Hankel would say:
>Hello. How can i make a batch for Linux?
>I've heard that i can make a 'script'. It's the same like BAT files for DOS?
>How can i generate it? What's the extension?
>I need to program two command line orders.

BAT files are reminiscent of script files, albeit where the canonical
scripting languages are actually somewhat powerful languages...














There is no such thing as an "extension" on Unix/Linux; that is an
artifact of the MS-DOS FAT filesystem.

On Linux, while it is _conventional_ for C source code to end with the
".c" suffix, and object code to end with ".o", and the likes; those are
NOT "extensions,"

Executable files are not expected to have any sort of "extension" or
"suffix;" the fact that they are executable is indicated by the
file permissions (see "man chmod"), and the start of the file will
indicate an "execution signature," whether by containing a binary
prefix that is recognized by the kernel, or by starting with the
characters #!, which is the convention to indicate that the file 
contains some form of "script."

The scripting language that is _guaranteed_ to be available on 
virtually _any_ Linux (save for fairly obscure distributions) is
GNU Bash; you might try "man bash" to get information on that
language.

Korn shell (ksh) is ubiquitous on commercial Unixes, and is available
on virtually all Linux distributions; csh/tcsh are the other "real
popular" option, albeit deprecated for scripting.  Perhaps the
most powerful of the bunch is zsh, which is the "most-hacked-on shell
language."

The convention for making a Bash script would be to find where Bash
is via "which bash" and then writing a script such as:



#!/bin/bash
# Simple bash script that lists all the full filesystems
export OURHOME=/tmp
cd $OURHOME
df > spaceinfo.$$
grep "100\%" spaceinfo.$$ > full.$$
cat full.$$
rm spaceinfo.$$ full.$$

Save as "myscript"

Then
% chmod a+x myscript
% ./myscript
%

On my system, there weren't any full filesystems, so this showed
nothing.
-- 
cbbrowne@ntlug.org - <http://www.ntlug.org/~cbbrowne/scripting.html>
All extremists should be taken out and shot.


If this page was useful to you, please click to help others find it:  

Your +1's can help friends, contacts, and others on the web find the best stuff when they search.

Comments?



Click here to add your comments



Don't miss responses! Subscribe to Comments by RSS or by Email

Click here to add your comments


If you want a picture to show with your comment, go get a Gravatar



Have you tried Searching this site?

Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates

This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.

Publishing your articles here

Jump to Comments



Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.

Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.

We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.

g_face.jpg

This post tagged:

       - Linux
       - Scripting
       - Shell




Unix/Linux Consultants

Skills Tests

Guest Post Here