User Profile

Collapse

Profile Sidebar

Collapse
nassim
nassim
Last Activity: Jan 4 '08, 04:38 AM
Joined: Dec 17 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • nassim
    replied to Need Help in Writing Unix Shell scripts
    here's a bourne script that copies a file:


    #!/bin/sh
    trap 'echo "script ex3 interrupted"; exit' 2 #user of system kills script

    # control number of arguments typed after command
    # command is name of shell script file, which has to be executable
    # ie chmod +x filename

    if [ $# -ne 2 ]
    then
    echo "two arguments expected"
    exit 1
    ...
    See more | Go to post

    Leave a comment:


  • nassim
    replied to Need Help in Writing Unix Shell scripts
    don't forget that there are hundreds of shell scripts on your computer now: make search for shell scripts

    i can email you a few simple beginner examples that i have done....
    See more | Go to post

    Leave a comment:


  • nassim
    replied to linux links
    sorry i didn't put that very well

    i was kinda hoping for a reply on that same day.. i'm alright now, well n truly in the right direction, thanks...
    See more | Go to post

    Leave a comment:


  • nassim
    started a topic linux links

    linux links

    Could someone please point me in the right direction with regards to link 'files'. I would like to be able to use the linux c IO to find/query them, along with other data files. they seem to be evading the file radar: the readdir function (dirent.h) is not picking them.

    email.removed@4 .ur.protection. com

    On a different matter, my thanks to Derrick Coetzee for his sample 'pseudo code' fopen_mkdir. Dodgy as it may be,...
    See more | Go to post
    Last edited by numberwhun; Dec 17 '07, 03:09 PM. Reason: add code tags
No activity results to display
Show More
Working...