diction(1) General Commands Manual diction(1)Name
diction, explain - print wordy sentences; thesaurus for diction
Syntax
diction [-ml] [-mm] [-n] [-f pfile] file...
explain
Description
The command finds all sentences in a document that contain phrases from a data base of bad or wordy diction. Each phrase is bracketed with
[ ]. Because runs before looking at the text, formatting header files should be included as part of the input.
The command is an interactive thesaurus for the phrases found by diction.
Options-mm Overrides default macro package -ms.
-ml Causes deroff to skip lists.
-fpfile Specifies pattern file in addition to default file. Note that you can specify the -n flag to suppress the default
file.
Restrictions
Use of non-standard formatting macros may cause incorrect sentence breaks.
See Alsoderoff(1)diction(1)
Check Out this Related Man Page
STYLE(1) General Commands Manual STYLE(1)NAME
style - analyze surface characteristics of a document
SYNOPSIS
style [ -ml ] [ -mm ] [ -a ] [ -e ] [ -l num ] [ -r num ] [ -p ] [ -P ] file ...
DESCRIPTION
Style analyzes the surface characteristics of the writing style of a document. It reports on readability, sentence length and structure,
word length and usage, verb type, and sentence openers. Because style runs deroff before looking at the text, formatting header files
should be included as part of the input. The default macro package -ms may be overridden with the flag -mm. The flag -ml, which causes
deroff to skip lists, should be used if the document contains many lists of non-sentences. The other options are used to locate sentences
with certain characteristics.
-a print all sentences with their length and readability index.
-e print all sentences that begin with an expletive.
-p print all sentences that contain a passive verb.
-lnum print all sentences longer than num.
-rnum print all sentences whose readability index is greater than num.
-P print parts of speech of the words in the document.
SEE ALSO deroff(1), diction(1)BUGS
Use of non-standard formatting macros may cause incorrect sentence breaks.
7th Edition April 29, 1985 STYLE(1)
Hi all,
how to write a script that will indentify the files in a directory which are 7 days old and delete those files.
Thanks in advance
Cheers
Arunava (8 Replies)
hello
whats the difference between excuting a shell script as
a)sh myscript.sh
b). ./myscript.sh
i noticed that my shell script works fine when i run it as . ./myscript
.sh but fails when i run it as sh myscript.sh could anybody explain why.
the shell script is very simple
... (9 Replies)
Does anyone know the command to start the DNS Daemon.
I looked in the /etc/init.d/inetsvc file and it tells me what the text should look like. When I go to open the corresponding files they are encoded and I can't read them.
So is there a command that will start the DNS daemon?
If... (8 Replies)
Well i use the following statement in a script to calculate the all column value of a ls command :
find . -name *.leon -exec ls -al {} \;|awk '{c+=$5} END {print c}'
And this is the result :
2.34546e+09
i would know what is exactly the "c+" role , and what i must modify to have the result... (8 Replies)
Dear Member,
i need help in this script
filename_DD_MM_YYYY_HHMMSS.log
this is the log file format
i need to split this name to three variables
1 variables contain filename
2 variables contain _DD_MM_YYY_
3 variables contains HHMMSS
... (7 Replies)
Hi frnds,
one my frnds has given resolution for my problem as below. it working great , but i couldnt understand somethings in the script.
Why ++ operator after the function calling. how these each block working. will each run for each input line sequencially or one block for all the lines... (9 Replies)
Hi All,
I want to know what is shared-IP and exclusive-IP while configuring zone?
How the global zone and non-global communicate with each other?
When I do ifconfig -a on my machine it shows below output
My doubt is they are physical and virtual interfaces in below output what is... (8 Replies)
I have something like in the script. Can anyone explain what does the sort command does and followed by the sed
sort -r -k3.7,3 -k3.1,3 -k3.4,3 -t: $dir"abc_"$x"_parsed" | sed -e 's/\(\)\(\{3\}\)/\1,\2/2' -e 's/\/2,00/\/200/'
The file abc_"$x"_parsed contains something like below
... (7 Replies)
I am trying to get folder names that contain only numbers.
Can someone explain why following command is printing 'total 450' as part of output..
$> ls -lt | awk '$9 ~ /^*$/' | more
total 450
drwxr-x--x 3 user1 group1 512 Mar 9 2008 329227163
drwxr-x--x 3 user1 group1 ... (17 Replies)
Has anyone ever encountered text from other files suddenly appearing in another data file that is not being used. There does not seem to be any reason for it, any thoughts would be useful.
Thanks (14 Replies)
Hi All
I'm trying to insert a new line at the before each comment line in a file.
Comment lines start with '#-----'
there are other comments with in lines but I don't want a new line there.
Example file:
blah
blah #do not insert here
#this is a comment
blah #some more
#another comment... (10 Replies)
I've found this script part on the stackoverflow:
if ; then
sudo bash "$0" "$@";
exit "$?";
fi
I realized that sudo bash "$0" "$@"; is the only needed for me.
But the strange thing happens when I move this line outside the IF statement:
sudo bash "$0" "$@"; stops the... (9 Replies)
I have a requirement to remove all non-ascii characters from a fixed length file. I used the below command which is removing special characters but somehow the total record length is being truncated to one space less. If it is a multi-byte string then many characters at the end are being truncated.... (8 Replies)