new to linux/Ubuntu/shell scripting . . .

'Forum Post ulist at gs1.ubuntuforums.org
Sun Dec 4 09:34:50 UTC 2005


You can change to a directory with the cd command. In linux the file and
directory names are case sensitive.

To run a shell script you have to make it executable with:


Code:
--------------------
    chmod +x myscript
--------------------


and run it with:


Code:
--------------------
    ./myscript
--------------------


or run it with a shell:


Code:
--------------------
    sh myscript
--------------------


-- 
mo_x




More information about the ubuntu-users mailing list