Sponsored Content
Top Forums Shell Programming and Scripting How to remove the ^@ character in a file. Post 302586821 by methyl on Tuesday 3rd of January 2012 10:35:54 AM
Old 01-03-2012
Must have been nulls.
 

10 More Discussions You Might Find Interesting

1. HP-UX

How to remove new line character and append new line character in a file?

Hi Experts, I have data coming in 4 columns and there are new line characters \n in between the data. I need to remove the new line characters in the middle of the row and keep the \n character at the end of the line. File is comma (,) seperated. Eg: ID,Client ,SNo,Rank 37,Airtel \n... (8 Replies)
Discussion started by: sasikari
8 Replies

2. Shell Programming and Scripting

How to remove first 2 character from file name

Hi All Please help me to remove the first 2 character from the file name. files are like this $ ls 12aman file 13atul si 56rana se I want to remove the first 2 char which are numbers. I want the o/p like thus aman file atul si rana se (8 Replies)
Discussion started by: atul9806
8 Replies

3. UNIX for Dummies Questions & Answers

Remove tab character from file

I am trying to remove the tab character from a file, which occurs on two places in every line. So far I have tried the following and most are from threads in this forum: sed -i '' -e 's/ / /' file.dat sed -i '' -e 's/*/ /' file.dat sed -i '' -e 's/\t*/ /g' file.dat sed -i '' -e 's/*//g'... (4 Replies)
Discussion started by: figaro
4 Replies

4. Shell Programming and Scripting

Remove ^L character from a file

Hello, I need to remove ^L character from a file as below: HELLO "I " HELLO "I " ^L HELLO "I" HELLO "I " HELLO "I " Please suggest. Thanks !! Please use next time code tags for your code and data (9 Replies)
Discussion started by: skhichi
9 Replies

5. Shell Programming and Scripting

How to remove ^I character from a UNIX file ?

Hi When i used :set list in vi , i have seen a lot ^I characters in my file. Could anyone please help me how to remove this characters ? Issue : When i used awk to combine two file (one of the file has ^I characters) then my output is different than what am expecting, one of column being... (2 Replies)
Discussion started by: rakeshkumar
2 Replies

6. Shell Programming and Scripting

Remove the last character (,) for every line in a file

Good afternoon: im working wih 2 files to find differences and use the cmp command cmp file1 file2 file1 file2 are are diifferent char 302 line1 i found what the difference is with the sed command and that is the file1 at the end of every line has a (,) (comma) character. i.e sed -n... (4 Replies)
Discussion started by: alexcol
4 Replies

7. Shell Programming and Scripting

How to remove ^M character in file in UNIX?

I have file with controlM (^M) character. i just wanted to run the script after removing the same through script. Thanks in Advance Ganesh. (1 Reply)
Discussion started by: Ganesh L
1 Replies

8. UNIX for Dummies Questions & Answers

How to remove $ or new line character in a file?

Hi All, Could any one suggest how to remove $ symbol in a text file when i am opening in vi editor. Scenario; For example iam having a file name aaa.txt the data inside the file is like sample name when i am opening in vi editor The same file resembles like below when i am... (1 Reply)
Discussion started by: Chandru_Raj
1 Replies

9. Shell Programming and Scripting

Remove scpecial character from a file

I would like to delete a particular character (') in file. I tried this command, but didn't work: sed 's/'//g' file My file contains these rows: 'eaa3b0e3f86b97a13f123302e1bc788f9':'FfdrTN\'' 'ff368e9fb0982cf91237ef5456297bbb3':'jdcgr$x' '5b829da203d0e53e49e632572bd9091a':']nzuerG' ... (4 Replies)
Discussion started by: freeroute
4 Replies

10. Shell Programming and Scripting

How to remove newline character if it is the only character in the entire file.?

I have a file which comes every day and the file data look's as below. Vi abc.txt a|b|c|d\n a|g|h|j\n Some times we receive the file with only a new line character in the file like vi abc.txt \n (8 Replies)
Discussion started by: rak Kundra
8 Replies
registry(n)						       Tcl Bundled Packages						       registry(n)

__________________________________________________________________________________________________________________________________________________

NAME
registry - Manipulate the Windows registry SYNOPSIS
package require registry 1.1 registry option keyName ?arg arg ...? _________________________________________________________________ DESCRIPTION
The registry package provides a general set of operations for manipulating the Windows registry. The package implements the registry Tcl command. This command is only supported on the Windows platform. Warning: this command should be used with caution as a corrupted reg- istry can leave your system in an unusable state. KeyName is the name of a registry key. Registry keys must be one of the following forms: \hostname ootnamekeypath rootnamekeypath rootname Hostname specifies the name of any valid Windows host that exports its registry. The rootname component must be one of HKEY_LOCAL_MACHINE, HKEY_USERS, HKEY_CLASSES_ROOT, HKEY_CURRENT_USER, HKEY_CURRENT_CONFIG, HKEY_PERFORMANCE_DATA, or HKEY_DYN_DATA. The keypath can be one or more registry key names separated by backslash () characters. Option indicates what to do with the registry key name. Any unique abbreviation for option is acceptable. The valid options are: registry broadcast keyName ?-timeout milliseconds? Sends a broadcast message to the system and running programs to notify them of certain updates. This is necessary to propagate changes to key registry keys like Environment. The timeout specifies the amount of time, in milliseconds, to wait for applications to respond to the broadcast message. It defaults to 3000. The following example demonstrates how to add a path to the global Envi- ronment and notify applications of the change without requiring a logoff/logon step (assumes admin privileges): set regPath [join { HKEY_LOCAL_MACHINE SYSTEM CurrentControlSet Control {Session Manager} Environment } "\"] set curPath [registry get $regPath "Path"] registry set $regPath "Path" "$curPath;$addPath" registry broadcast "Environment" registry delete keyName ?valueName? If the optional valueName argument is present, the specified value under keyName will be deleted from the registry. If the optional valueName is omitted, the specified key and any subkeys or values beneath it in the registry hierarchy will be deleted. If the key could not be deleted then an error is generated. If the key did not exist, the command has no effect. registry get keyName valueName Returns the data associated with the value valueName under the key keyName. If either the key or the value does not exist, then an error is generated. For more details on the format of the returned data, see SUPPORTED TYPES, below. registry keys keyName ?pattern? If pattern is not specified, returns a list of names of all the subkeys of keyName. If pattern is specified, only those names matching pattern are returned. Matching is determined using the same rules as for string match. If the specified keyName does not exist, then an error is generated. registry set keyName ?valueName data ?type?? If valueName is not specified, creates the key keyName if it does not already exist. If valueName is specified, creates the key keyName and value valueName if necessary. The contents of valueName are set to data with the type indicated by type. If type is not specified, the type sz is assumed. For more details on the data and type arguments, see SUPPORTED TYPES below. registry type keyName valueName Returns the type of the value valueName in the key keyName. For more information on the possible types, see SUPPORTED TYPES, below. registry values keyName ?pattern? If pattern is not specified, returns a list of names of all the values of keyName. If pattern is specified, only those names match- ing pattern are returned. Matching is determined using the same rules as for string match. SUPPORTED TYPES
Each value under a key in the registry contains some data of a particular type in a type-specific representation. The registry command converts between this internal representation and one that can be manipulated by Tcl scripts. In most cases, the data is simply returned as a Tcl string. The type indicates the intended use for the data, but does not actually change the representation. For some types, the registry command returns the data in a different form to make it easier to manipulate. The following types are recognized by the registry command: binary The registry value contains arbitrary binary data. The data is represented exactly in Tcl, including any embedded nulls. none The registry value contains arbitrary binary data with no defined type. The data is represented exactly in Tcl, including any embedded nulls. sz The registry value contains a null-terminated string. The data is represented in Tcl as a string. expand_sz The registry value contains a null-terminated string that contains unexpanded references to environment variables in the normal Windows style (for example, "%PATH%"). The data is represented in Tcl as a string. dword The registry value contains a little-endian 32-bit number. The data is represented in Tcl as a decimal string. dword_big_endian The registry value contains a big-endian 32-bit number. The data is represented in Tcl as a decimal string. link The registry value contains a symbolic link. The data is represented exactly in Tcl, including any embedded nulls. multi_sz The registry value contains an array of null-terminated strings. The data is represented in Tcl as a list of strings. resource_list The registry value contains a device-driver resource list. The data is represented exactly in Tcl, including any embedded nulls. In addition to the symbolically named types listed above, unknown types are identified using a 32-bit integer that corresponds to the type code returned by the system interfaces. In this case, the data is represented exactly in Tcl, including any embedded nulls. PORTABILITY ISSUES
The registry command is only available on Windows. EXAMPLE
Print out how double-clicking on a Tcl script file will invoke a Tcl interpreter: package require registry set ext .tcl # Read the type name set type [registry get HKEY_CLASSES_ROOT\$ext {}] # Work out where to look for the command set path HKEY_CLASSES_ROOT\$type\Shell\Open\command # Read the command! set command [registry get $path {}] puts "$ext opens with $command" KEYWORDS
registry registry 1.1 registry(n)
All times are GMT -4. The time now is 04:54 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy