Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

delete(1m) [hpux man page]

delete(1m)																delete(1m)

NAME
delete - Deletes the DCE DTS entity SYNOPSIS
dtscp delete DESCRIPTION
The delete command deletes the DCE DTS entity from the system where the command is entered. When delete is executed, the DTS daemon process completes execution. To restart the DTS daemon, use the dce_config shell command. Privilege Required You must have write permission on the ACL associated with the DTS entity in order to execute the command. NOTES
The DCE DTS entity cannot be deleted until you enter the disable command, which causes the status attribute state to be set to off. This command is replaced at Revision 1.1 by the dcecp command and may not be provided in future releases of DCE. EXAMPLE
dtscp> delete RELATED INFORMATION
Commands: disable(1m) delete(1m)

Check Out this Related Man Page

synchronize(1m) 														   synchronize(1m)

NAME
synchronize - Causes the DTS entity to synchronize the clock on the system where the command is entered. SYNOPSIS
dtscp synchronize [set clock boolean] ARGUMENTS
Specifies whether the clock is abruptly set or gradually adjusted to the computed time. This argument is optional. The following values are valid: The clock is gradually adjusted. This is the default condition. The clock is abruptly set. DESCRIPTION
The synchronize command causes the DTS clerk or server to solicit time intervals from servers, compute the intersection of the time inter- vals, and adjust the system clock to the midpoint of the computed time interval. This command overrides the functions of the synchroniza- tion hold down characteristic. Privilege Required You must have write permission on the ACL associated with the DTS entity in order to execute the command. NOTES
The synchronize command does not execute if the entity is already synchronizing or is disabled; the entity must be in the on state. This command is replaced at Revision 1.1 by the dcecp command and may not be provided in future releases of DCE. EXAMPLES
The following example shows how to initiate a synchronization for the entity, followed by a gradual clock adjustment: dtscp> synchronize The following example shows how to initiate a synchronization for the entity, followed by an abrupt reset of the clock: dtscp> synchronize set clock true synchronize(1m)
Man Page

13 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Delete function

I need to delete a certain data in a file. May I know how to do it by using awk, sed any shell command? For example, i have a file details.dat. The user will search in that file for a particular field and if match, he will delete the whole record. Do you know how to do it? (21 Replies)
Discussion started by: Ohji
21 Replies

2. Shell Programming and Scripting

Cannot delete file in unix

Hi, I upload incorrect filename into unix account. I tried a lot of way to delete this filename, but not work...any idea? -rwxrwxrwx+ 1 aaaaa userrr 698368 Jul 25 12:14 ab123 v2.12.09 with revision marks.doc Many Thanks!! (32 Replies)
Discussion started by: happyv
32 Replies

3. Shell Programming and Scripting

Delete files older than certain days - Wrong !!!

Guys, I had raised a question about deleting files older than today in a specific directory and i got this as an answer find ${ARCH_DEST}/*.gz -mtime +0 -exec rm -f {} \; What happens when there aren't files that meet this criteria ? Can it delete any other directories ? I had a shocking... (22 Replies)
Discussion started by: kamathg
22 Replies

4. Shell Programming and Scripting

help with awk or sed

Hi Folks, I need help about three things 1. First i have filename "beatiful.txt" have word "good" wants to replace that word with "bad". 2. Second I have file data.txt that containts words "p49" I want to delete that character from entire file. 3. If i grep a particular word from a file... (30 Replies)
Discussion started by: learnbash
30 Replies

5. UNIX for Dummies Questions & Answers

how to remove the first line from a flat file ?

Hi, I want to remove the first line from a flat file using unix command as simple as possible. Can anybody give me a hand ? Thanks in advance. xli (21 Replies)
Discussion started by: xli
21 Replies

6. Shell Programming and Scripting

Need to delete large set of files (i.e) close to 100K from a directory based on the input file

Hi all, I need a script to delete a large set of files from a directory under / based on an input file and want to redirect errors into separate file. I have already prepared a list of files in the input file. Kndly help me. Thanks, Prash (36 Replies)
Discussion started by: prash358
36 Replies

7. UNIX for Dummies Questions & Answers

Delete files beginning with *

Hi, I had created a whole bunch of files which are like *, *1, *2 etc... Can someone tell me if there is a way to batch remove the whole directory? I tried the solution which goes one level up and removes the file, but that doesn't seem to work for files beginning with a *. Thanks in... (28 Replies)
Discussion started by: jamie_123
28 Replies

8. UNIX for Dummies Questions & Answers

Delete the file which crossed 2GB

Hi , I wants to create the bash script for deleting the specified 2gb file and wants to take the backup before doing that. please help me how to do the same,I use RHEL5 server (22 Replies)
Discussion started by: Rahulne25
22 Replies

9. Shell Programming and Scripting

Delete big directory issue

Hello folks, I am deleting a directory with script it is taking 11Hour and also increase the IO on server. I am using below command, inside date directory there are hour directories, which i am deleting after archiving. Archiving is not taking long time, only "rm -rf" is taking alot of time with... (21 Replies)
Discussion started by: learnbash
21 Replies

10. UNIX for Beginners Questions & Answers

Can't delete a file in the trash on OSX 10.11.6

I use a Mac running OSX El Capitan = UNIX user the hood. After rearranging files on an external hard drive, I ended up with a folder in the trash containing a file called "~INITPicker 2.0". I cannot empty the trash, and so delete the file. I even tried terminal, using the rm file command and... (38 Replies)
Discussion started by: djfilms
38 Replies

11. Shell Programming and Scripting

How to delete all lines before a particular pattern when the pattern is defined in a variable?

I have a file Line 1 a Line 22 Line 33 Line 1 b Line 22 Line 1 c Line 4 Line 5 I want to delete all lines before last occurrence of a line which contains something which is defined in a variable. Say a variable var contains 'Line 1', then I need the following in the output. ... (21 Replies)
Discussion started by: Soham
21 Replies

12. Shell Programming and Scripting

Conditional delete

Hi Friends, I have somefiles like 20180720_1812.tar.gz 20180720_1912.tar.gz 20180720_2012.tar.gz 20180720_2112.tar.gz 20180721_0012.tar.gz 20180721_0112.tar.gz 20180721_0212.tar.gz 20180721_0312.tar.gz in a directory and so on..these files gets created every 3 hours where as... (28 Replies)
Discussion started by: onenessboy
28 Replies

13. UNIX for Advanced & Expert Users

Need help to delete special characters exists only at the end of the each record in UNIX file?

Hi, I have a file in unix with 15 columns.It consists special characters(#,$,^M,@,*,% etc)at the end of the each record.I want to remove these special characters.I used the following: Sed -e 's/ /g;s/ */ /g' . But It is removing special characters exists everywhere in the file(begining,middle... (24 Replies)
Discussion started by: rakeshp
24 Replies