Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by cantubas

  1. cantubas

    how can i do a boot cd with all my settings (red hat)

    i have installed red hat and i have configured several settings. how can i do to having a boot cd with all my settings if i have fatal error (like disk crash...). have you a solutions for me ? thanks
  2. cantubas

    difference between "CR"+"LF" and "CR"+"esc&qu

    there is a difference between "CR"+"LF" and "CR"+"esc"+"&a+01R". when i write my file with "CR"+"esc"+"&a+01R", i can put more ligne on the page than i write with CR/LF. why???
  3. cantubas

    how can i have the full pathname with C function

    ok thanks
  4. cantubas

    how can i have the full pathname with C function

    i want a C function that can translate any relative name (like ../bin/sh) into absolute name (like /usr/bin/sh) i want a C solution if it's possible =====================================
  5. cantubas

    how can i have the full pathname with C function

    $ pwd /usr/bin $ name="sh" $ echo $(cd $(dirname "$name");pwd)/$(basename "$name") /usr/bin/sh $ echo $name sh do you anderstand??
  6. cantubas

    how can i have the full pathname with C function

    in shell script unix I do echo $(cd $(dirname "$name");pwd)/$(basename "$name") is it possible in C?? escuse me for my bad english, I'm french
  7. cantubas

    open vs fopen

    OK thanks xwb and between read and fread?
  8. cantubas

    open vs fopen

    in fact what i want to know, it's teh difference between open-read and fopen-fread (some parameters I/O...). i'ven't got the same result when i read /dev/telnet/xxxx
  9. cantubas

    open vs fopen

    which are the differences between fopen and open? i 've not the same result if i use open-read-close or if i use fopen-fread-fclose in order to read on a terminal
  10. cantubas

    write binary datas in a pipe

    i want to write binary data in a gz file. i can create file.gz with the popen but i can't write my datas. printf does't like binary datas like null char thanks
  11. cantubas

    creation date of a UNIX file

    i want to delete file that are created since 90 days. if i understand i must record the date of creation in the file...
  12. cantubas

    PCL print program

    what do you do with your PCL analyser, DansDadUK ????
  13. cantubas

    creation date of a UNIX file

    ok but i want i want to know the creation date of a UNIX file
  14. cantubas

    creation date of a UNIX file

    how can i know the creation date of a UNIX file? i've found st_ctime of fstat class but t isn't ok because all time i change the access mod of the file, the st_ctime is varying excuse for my bad english....
  15. cantubas

    how can we limit "find" to the current directory

    sorry but i haven't got maxdepth option on HPUX

Part and Inventory Search

Back
Top