Hello Escapians!
I have some problems with BASH scripting, I'd like to ask the local UNIX gurus to help me with this. Please?
This is the one I need help with:
This is a script with one parameter (ex: dirplus.sh). It should do the following when ran:
if the parameter is not a directory, then write ERROR to the standard output. If it is, enter the directory and count every directory and file, then ask for an extension (read from standard input) for each of them (just some letter, like a, b, d, ... it doesn't have to be a real extrension), when finished with the reading, write the number of files and directories in the directory given in the parameter to std output (just the number, don't count hidden files and folders). Then take the extensions and append them to the end of each file and directory respectively (rename them and write the extension to the end of each file).
Here is an example of how it should run:
I have some problems with BASH scripting, I'd like to ask the local UNIX gurus to help me with this. Please?
This is the one I need help with:
This is a script with one parameter (ex: dirplus.sh). It should do the following when ran:
if the parameter is not a directory, then write ERROR to the standard output. If it is, enter the directory and count every directory and file, then ask for an extension (read from standard input) for each of them (just some letter, like a, b, d, ... it doesn't have to be a real extrension), when finished with the reading, write the number of files and directories in the directory given in the parameter to std output (just the number, don't count hidden files and folders). Then take the extensions and append them to the end of each file and directory respectively (rename them and write the extension to the end of each file).
Here is an example of how it should run:
I know it's not a very complicated script, but I'm stuck at trying to decode it from the output. Please help?>ls -l
drwxr-xr-x 3 antiemes antiemes 4096 2008-02-08 01:02 bitumen
drwxr-xr-x 5 antiemes antiemes 4096 2008-02-08 01:02 elnyom
-rw-r--r-- 1 antiemes antiemes 966 2008-02-08 01:02 elv.txt
-rw-r--r-- 1 antiemes antiemes 856 2008-02-08 01:02 extra.txt
-rw-r--r-- 1 antiemes antiemes 1040 2008-02-08 01:02 fadora.txt
-rw-r--r-- 1 antiemes antiemes 1067 2008-02-08 01:02 fal.bin
drwxr-xr-x 3 antiemes antiemes 4096 2008-02-08 01:02 gyullad
-rw-r--r-- 1 antiemes antiemes 1041 2008-02-08 01:02 harmas.pl
drwxr-xr-x 3 antiemes antiemes 4096 2008-02-08 01:02 hazugsag
-rw-r--r-- 1 antiemes antiemes 1063 2008-02-08 01:02 szukseg.dat
-rw-r--r-- 1 antiemes antiemes 480 2008-02-08 01:02 tiszta.pas
-rw-r--r-- 1 antiemes antiemes 1014 2008-02-08 01:02 ugyetlen.so
-rw-r--r-- 1 antiemes antiemes 1462 2008-02-08 01:02 vastag.jpg
>./feladat1.sh
ERROR
>./feladat1.sh elv.txt
ERROR
>ls -l elnyom
drwxr-xr-x 2 antiemes antiemes 4096 2008-02-08 01:02 csipo
-rw-r--r-- 1 antiemes antiemes 776 2008-02-08 01:02 extra.txt
-rw-r--r-- 1 antiemes antiemes 1352 2008-02-08 01:02 fadora.txt
-rw-r--r-- 1 antiemes antiemes 1848 2008-02-08 01:02 farol.png
drwxr-xr-x 2 antiemes antiemes 4096 2008-02-08 01:02 hatvan
-rw-r--r-- 1 antiemes antiemes 889 2008-02-08 01:02 jelzo.dll
-rw-r--r-- 1 antiemes antiemes 1090 2008-02-08 01:02 kepes.bin
-rw-r--r-- 1 antiemes antiemes 2079 2008-02-08 01:02 kez.mpeg
drwxr-xr-x 4 antiemes antiemes 4096 2008-02-08 01:02 szukseg
-rw-r--r-- 1 antiemes antiemes 1940 2008-02-08 01:02 tobbi.dat
>./feladat1.sh elnyom
a
b
c
d
e
f
g
h
i
j
10
>ls -l elnyom
total 40
drwxr-xr-x 2 antiemes antiemes 4096 2008-02-08 01:02 csipoa
-rw-r--r-- 1 antiemes antiemes 776 2008-02-08 01:02 extra.txtb
-rw-r--r-- 1 antiemes antiemes 1352 2008-02-08 01:02 fadora.txtc
-rw-r--r-- 1 antiemes antiemes 1848 2008-02-08 01:02 farol.pngd
drwxr-xr-x 2 antiemes antiemes 4096 2008-02-08 01:02 hatvane
-rw-r--r-- 1 antiemes antiemes 889 2008-02-08 01:02 jelzo.dllf
-rw-r--r-- 1 antiemes antiemes 1090 2008-02-08 01:02 kepes.bing
-rw-r--r-- 1 antiemes antiemes 2079 2008-02-08 01:02 kez.mpegh
drwxr-xr-x 4 antiemes antiemes 4096 2008-02-08 01:02 szuksegi
-rw-r--r-- 1 antiemes antiemes 1940 2008-02-08 01:02 tobbi.datj