What is kuu command in unix?
Syntax :
Options -c : complements the set of characters in string.i.e., operations apply to characters not in the given set -d : delete characters in the first set from the output. -s : replaces repeated characters listed in the set1 with single occurrence -t : truncates set1.
Sample Commands
1. How to convert lower case characters to upper case. To convert characters from lower case to upper case, you can either specify a range of characters or use the predefined character classes.
Output:
Output:
or
Output:
Alternatively, you can provide input for the tr command using redirection:
Output:
2. How to translate white-space characters to tabs. The following command translates all the white-space characters to tabs
Output:
In the previous example we can also use redirection to provide intput for tr. Although this time we will use a here string for that:
Output:
3. How to translate braces into parenthesis. You can also translate from and to a file. In this example we will translate braces in a file with parenthesis.
Output:
Output:
The above command will read each character from “geekfile.txt”, translate if it is a brace, and write the output to “newfile.txt”.
4. How to squeeze a sequence of repetitive characters using -s option. To squeeze repetitive occurrences of characters specified in a set use the -s option. This removes repeated instances of characters of the last SET specified. OR we can say that, you can convert multiple continuous spaces with a single space
Output:
And again, accomplish the same task but using a string here:
Output:
5. How to delete specified characters using -d option. To delete specific characters use the -d option. This option deletes characters in the first set specified.
Output:
Or equivalently use:
Output:
6. To remove all the digits from the string, you can use
or
Output:
7. How to complement the sets using -c option You can complement the SET1 using -c option. For example, to remove all characters except digits, you can use the following.
or
Output:
This article is contributed by Shivani Ghughtyal. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
run-as support with Kerberos authentication on Linux/UNIX enables you to execute any program or command using a different user account other than the currently logged in user (you). Search for jobs related to Kuu command unix or hire on the world's largest freelancing marketplace with 18m+ jobs. The Unix command su, which stands for substitute user, is used by a computer user to execute commands with the privileges of another user account. Find answers to How to kuu to another id inside a shell script from the. Some Unix command you'll see used: chmod: This command changes the permissions on files and directories.
Related Questions
No More Questions available at this moment!