![]() | |
![]() |
| | Thread Tools | Display Modes |
#21
| |||
| |||
|
|
Ummm.... How can I tell what the file type is on Universe? Group.Stat doesnt work for type 1,13 & 19 files. If I had access to the Sys admin tools I guess I could tell but they run on a PC (somewhere) from what I can see on the docs. This is a remote site that I dial into. The Documentation that I have are PDF's downloaded from IBM. Dont know if there for the correct version or not. |
#22
| |||
| |||
|
|
panzerboy (AT) gmail (DOT) com wrote: Ummm.... How can I tell what the file type is on Universe? Group.Stat doesnt work for type 1,13 & 19 files. If I had access to the Sys admin tools I guess I could tell but they run on a PC (somewhere) from what I can see on the docs. This is a remote site that I dial into. The Documentation that I have are PDF's downloaded from IBM. Dont know if there for the correct version or not. I can answer my own question. Twas searching for 0 length files in the BP and found one ".Type1". I guess my BP file is a Type 1 then. |
|
Jeremy Thomson Regards, |
#23
| |||
| |||
|
|
panzerboy (AT) gmail (DOT) com wrote: Ummm.... How can I tell what the file type is on Universe? Group.Stat doesnt work for type 1,13 & 19 files. If I had access to the Sys admin tools I guess I could tell but they run on a PC (somewhere) from what I can see on the docs. This is a remote site that I dial into. The Documentation that I have are PDF's downloaded from IBM. Dont know if there for the correct version or not. I can answer my own question. Twas searching for 0 length files in the BP and found one ".Type1". I guess my BP file is a Type 1 then. Jeremy Thomson |
#24
| |||
| |||
|
|
panzerboy> wrote in message news:1163039857.411673.58790 (AT) h54g2000cwb (DOT) googlegroups.com... [] The files may be editable in the directory but... If your program names are 14 chars or longer then it creates the file in a subdirectory in the BP directory. So item "REALLYLONGITEMNAME" at unix is BP/REALLYLONGITEM/NAME . If the item lenght is 14 chars then the 'leaf' name is '?' I regularly ftp in my programs and have to create these directories & sub files in order to access them in Universe. I dont know which version of Universe I'm afflicted with, it is running on Solaris. It seems a strange thing to do, whats the advantage of this directory/file structure? Universe does a similar thing with the file names, file "REALLYLONGFILENAME" becomes something like REALLYLONGF000 at the Unix level. No, not unless you forget to turn LONGNAMES ON (which, knowing the screwed-up way things work, is probably off by default.) Maybe Unidata has something similar, if they don't it's a prime (pun not intended) example of how out-of-touch systems programmers are. Chandru The editor I use is EditPlus, and UV.VI when on that damned Universe machine. Jeremy Thomson |
#25
| |||
| |||
|
|
All BASIC program files must be Type 1 or 19. LISTFILES should show type. To prevent the truncation, set new file types to 19. Also use LONGNAMES ON To change an existing file, you will have to create a new file, copy data, delete old, and rename new. Note that the rename has to be done at Unix with mv oldfile newfile; mv D_oldfile D_newfile and you have to edit the VOC entry or some combination thereof. Frigging pita. But at least it's pretty obvious. Chandru panzerboy (AT) gmail (DOT) com> wrote in message news:1163117809.981733.143260 (AT) h48g2000cwc (DOT) googlegroups.com... panzerboy (AT) gmail (DOT) com wrote: Ummm.... How can I tell what the file type is on Universe? Group.Stat doesnt work for type 1,13 & 19 files. If I had access to the Sys admin tools I guess I could tell but they run on a PC (somewhere) from what I can see on the docs. This is a remote site that I dial into. The Documentation that I have are PDF's downloaded from IBM. Dont know if there for the correct version or not. I can answer my own question. Twas searching for 0 length files in the BP and found one ".Type1". I guess my BP file is a Type 1 then. Jeremy Thomson You can change the file from type1 to type19 by |
|
resize File name = TESTFILE |
|
LISTF |
#26
| |||
| |||
|
|
Chandru Murthi wrote: All BASIC program files must be Type 1 or 19. LISTFILES should show type. To prevent the truncation, set new file types to 19. Also use LONGNAMES ON To change an existing file, you will have to create a new file, copy data, delete old, and rename new. Note that the rename has to be done at Unix with mv oldfile newfile; mv D_oldfile D_newfile and you have to edit the VOC entry or some combination thereof. Frigging pita. But at least it's pretty obvious. Chandru panzerboy (AT) gmail (DOT) com> wrote in message news:1163117809.981733.143260 (AT) h48g2000cwc (DOT) googlegroups.com... panzerboy (AT) gmail (DOT) com wrote: Ummm.... How can I tell what the file type is on Universe? Group.Stat doesnt work for type 1,13 & 19 files. If I had access to the Sys admin tools I guess I could tell but they run on a PC (somewhere) from what I can see on the docs. This is a remote site that I dial into. The Documentation that I have are PDF's downloaded from IBM. Dont know if there for the correct version or not. I can answer my own question. Twas searching for 0 length files in the BP and found one ".Type1". I guess my BP file is a Type 1 then. Jeremy Thomson You can change the file from type1 to type19 by using the RESIZE verb. Backup the file before resizing, because lost data can ruin your whole day. :-) Filename........................... Pathname...................... Type Modulo DATA TESTFILE TESTFILE 1 1 resize File name = TESTFILE File type = 19 LISTF FILES in your vocabulary 08:12:34am 10 Nov 2006 Page 1 Filename........................... Pathname...................... Type Modulo DATA TESTFILE TESTFILE 19 1 Ron White -- Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ------->>>>>>http://www.NewsDemon.com<<<<<<------ Unlimited Access, Anonymous Accounts, Uncensored Broadband Access |
#27
| |||
| |||
|
|
Not quite -- I believe if the object is to eliminate the subdirectories, RESIZE file 19 will not. You have to create the file as 19 (maybe even with LONGNAMES off) and rename it. But then, it may be different on different releases, I am on 10.2 Chandru "Ron White" <ron (AT) eckel (DOT) com> wrote in message news:45548b70$0$11385$b9f67a60 (AT) news (DOT) newsdemon.com... Chandru Murthi wrote: All BASIC program files must be Type 1 or 19. LISTFILES should show type. To prevent the truncation, set new file types to 19. Also use LONGNAMES ON To change an existing file, you will have to create a new file, copy data, delete old, and rename new. Note that the rename has to be done at Unix with mv oldfile newfile; mv D_oldfile D_newfile and you have to edit the VOC entry or some combination thereof. Frigging pita. But at least it's pretty obvious. Chandru panzerboy (AT) gmail (DOT) com> wrote in message news:1163117809.981733.143260 (AT) h48g2000cwc (DOT) googlegroups.com... panzerboy (AT) gmail (DOT) com wrote: Ummm.... How can I tell what the file type is on Universe? Group.Stat doesnt work for type 1,13 & 19 files. If I had access to the Sys admin tools I guess I could tell but they run on a PC (somewhere) from what I can see on the docs. This is a remote site that I dial into. The Documentation that I have are PDF's downloaded from IBM. Dont know if there for the correct version or not. I can answer my own question. Twas searching for 0 length files in the BP and found one ".Type1". I guess my BP file is a Type 1 then. Jeremy Thomson You can change the file from type1 to type19 by using the RESIZE verb. Backup the file before resizing, because lost data can ruin your whole day. :-) Filename........................... Pathname...................... Type Modulo DATA TESTFILE TESTFILE 1 1 resize File name = TESTFILE File type = 19 LISTF FILES in your vocabulary 08:12:34am 10 Nov 2006 Page 1 Filename........................... Pathname...................... Type Modulo DATA TESTFILE TESTFILE 19 1 Ron White -- Posted via NewsDemon.com - Premium Uncensored Newsgroup Service ------->>>>>>http://www.NewsDemon.com<<<<<<------ Unlimited Access, Anonymous Accounts, Uncensored Broadband Access |
#28
| |||
| |||
|
|
On a UnvVerse box, what do you folks use (I *think* it is running on a sun box, but I could be wrong). Is there an editor for UniVerse? I suppose I could download the eval versions of Universe from IBM's site.... This one comes up from time to time, and I always love to see the many |
#29
| |||
| |||
|
|
I might be done some work on a UniVerse box. When I use a pick box, I use update, and I can't really work will with the old "line editor" Even many moons ago, I would use JET on r83, and on Ultimate boxes, I would execute a "term" command, and use the wp-in command. On a UnvVerse box, what do you folks use (I *think* it is running on a sun box, but I could be wrong). Is there an editor for UniVerse? I suppose I could download the eval versions of Universe from IBM's site.... I am curious what you folks use (or, better said, what kind of full screen editor can I expect to find on this box?). -- Albert D. Kallal Edmonton, Alberta Canada pleaseNOOSpamKallal (AT) msn (DOT) com |
![]() |
| Thread Tools | |
| Display Modes | |
| |