Need a simple script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need a simple script
# 8  
Old 03-11-2004
Ok, Relykk, I'll accept your challenge. Based on the information that you provided I will attempt to construct my first Italian sentence.

I'll need to do a little research of course. But that won't kill me. I see that verbs ending in "-are" are called "first conjugation" and verbs ending in "-ere" are called "second conjugation".

So If I'm reading that page right, my sentence is:

Io pensò tu essi bella.

I actually would be interested in knowing how I did. Smilie I assume I got something wrong. But that's how we learn.

Contrary to your post, I don't feel that I learned the entire Italian language. But I certainly learned more that I would have if you had spoon-fed me the answer.

Yes I had to expend several minutes of effort on that sentence. It was worth it. And I have no reason at all to learn Italian.
# 9  
Old 03-11-2004
its not niCe to talk about me in front of me let alone in another language. heh
# 10  
Old 03-12-2004
it might be helpful to comment the scripts you post so that newbs can have a frame of reference when examining your script, lovely and simple as it is. Smilie

so:
Code:
#!/bin/sh
#----mkbak is a script to backup files
# created by Ygor - dawn/of/time.
# comment & minor edits by 
# [MA]Flying_Meat - couple/minutes/ago.

# echo an error message if no arguments
if [ $# -lt 1 ]
then
   echo "Usage: mkbak filename"
   exit
fi

# assign the current date to "JJJ" (man date)
JJJ=`date '+%j'`

# main loop - walk through the list of files and back 'em up 
while [ $# -gt 0 ]
do
   echo $1
   FILE=$1
   #----check file exists
   if [ ! -f $FILE ]
   then
      echo Error: File '$FILE' not found!!
   else
      # check that hidden directory named ".bkup" exists
      if [ -d .bkup ]
      then
          # give a destination filename to variable "DESTFILE"
          DESTFILE=.bkup/$FILE.$JJJ
      else
          # still give a destination filename, just in current working directory
          DESTFILE=$FILE.$JJJ
      fi

      # duplicate the file
      cp $FILE $DESTFILE
      # compress it with gzip
      gzip -9nf $DESTFILE
      # output the filename
      ls -l $DESTFILE.gz
   fi

   # get the next file name
   shift

# no more filenames to work with. exit main loop
done

if more commenting is needed, then of course, it's easy enough... Smilie

this would be saved as an ascii text file and chmod'd (man chmod) to u+x via the command line instruction:
chmod u+x mkbak

and always remember: a little knowledge can kick yo butt!

Last edited by [MA]Flying_Meat; 03-12-2004 at 01:29 AM..
# 11  
Old 03-16-2004
Hey guys I think you have scared him/her off!

I know it is difficult to know where to start when writing a new program, but your PCode is a good starting point. Good to see someone thinking in those terms for once.

There are those on this board that are paranoid about students obtaining course work from them without (l)earning it.

Despite the bluntness of some replies, I would have to agree with this point of view. So ... use your P-Code as a basis for a script. You have all the information you need from previous posts. Post your efforts if you are still having trouble.

Or if you don't understand some specifics of the examples provided you, ask specific questions.

MBB
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Simple if script

Hi, new to unix and scripting, and i'm trying to set up a simple "if" script to create a seperate flag file dependant on success. So far i have the following ($5 is a variable passed to the script from the backup job) if then touch /u03/backups/backup_ended.flag else touch... (13 Replies)
Discussion started by: richs24
13 Replies

2. Linux

How to execute a simple select script using a shell script?

Hi team, I have two select statements and need to run them using SYSDBA user select * from temp_temp_seg_usage; select segment_name, tablespace_name, bytes/ (1024*1024) UsedMb from dba_segments where segment_name='TEMP_TEMP_SEG_USAGE'; Need to run this using a shell script say named... (1 Reply)
Discussion started by: pamsy78
1 Replies

3. Shell Programming and Scripting

Help making simple perl or bash script to create a simple matrix

Hello all! This is my first post and I'm very new to programming. I would like help creating a simple perl or bash script that I will be using in my work as a junior bioinformatician. Essentially, I would like to take a tab-delimted or .csv text with 3 columns and write them to a "3D" matrix: ... (16 Replies)
Discussion started by: torchij
16 Replies

4. Shell Programming and Scripting

Simple Script Can u help please?

I have a file that contains these lines User ID Username -------- ---------- 7738626,zrazak 7783535,jvincigu 7805567,ldrennan 7805583,mtsakama I need to sort the names alphabetically How can I sort the lines based on the user names ? I would appreciate a quick reply anyone ... (1 Reply)
Discussion started by: mnassiri
1 Replies

5. Shell Programming and Scripting

Simple Script to do so?

hi guys, i am a noob to shell scripting, and i would like to run a simple script, that could simply do the following: 1. SFTP to a remote server/path...and download the newest *.gz backup file on that server. (there are many *.gz files in that folder, i simply need the latest one) 2. locally... (1 Reply)
Discussion started by: Confidence
1 Replies

6. Shell Programming and Scripting

Simple script

I have a script that will check for integer line by line and if it encounter any blank space will echo it: Below the script: #!/bin/ksh while read i do echo "Value is $i" count=`expr substr "$i" 1 3` echo $count if && then echo "Matched" else echo "Blank Space Found" fi (3 Replies)
Discussion started by: ali560045
3 Replies

7. UNIX for Dummies Questions & Answers

Simple script

I am trying to print my script arguments, but i am stuck at the arrow pointed lines..please help #!/bin/bash echo "Number of arguments $#" count=1 while do echo ${$count} <======================== count = $(expr $count +1) <================== done (4 Replies)
Discussion started by: chvs2000
4 Replies

8. Shell Programming and Scripting

simple script

Hi, I just need a shell script to find out the processes taking longer time...(Unix/Linux) Urgent response needed.. Rajiv (5 Replies)
Discussion started by: rajivn786
5 Replies

9. Shell Programming and Scripting

Simple Script

Here is the script that i am trying to run. I get an error and i can't figure out what is the problem. #!/bin/bash echo "What is your name" read NAME if ; then echo "My name is the same" esle echo "You have a nice name" fi (11 Replies)
Discussion started by: xplod4202
11 Replies

10. UNIX for Dummies Questions & Answers

help with simple script

I need a script that checks to see if ypserv is running, and if not it will restart yp. I have a ypslave that is running Sol9, and the ypsrv daemon is dieing, I want to create a cron job that periodicly checks to see if it's running, and if it see's that it isn't, it will re-start the daemon (1 Reply)
Discussion started by: jdel80
1 Replies
Login or Register to Ask a Question