Use one of the following commands to list all available suffixes for the entire AppleTalk realm:
tnsuffix tnsuffix -L |
Sample Output:
atblahmap |
|
|
.zip |
|
.ppt |
|
.doc |
nnnmap |
|
|
.xls |
|
.txt |
|
.ps |
Use the following command to list all suffixes available for the AppleTalk map nnnmap:
tnsuffix -L -m nnnmap |
Sample Output:
.xls .txt .ps |
Use the following command to read the value of the attribute comment for the suffix .xls in the AppleTalk map atblahmap:
tnsuffix -R -m atblahmap -x .xls -a comment |
Use the following command to create the suffix .ps in the AppleTalk map nnnmap:
tnsuffix -A -m nnnmap -x .ps -a type=PS -a comment="PostScripts" |
Use the following command to modify the value of the comment attribute to read "Microsoft Word for Windows 95 version 7.0" for the suffix .doc in the AppleTalk map atblahmap:
tnsuffix -M -m atblahmap -x .doc -a comment="Microsoft Word for Windows 95 version 7.0" |
Use the following command to delete the suffix .xls from the AppleTalk map atblahmap:
tnsuffix -D -m atblahmap -x .xls |