英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

purgation    
n. 清洁,净化,洗罪,通便

清洁,净化,洗罪,通便

purgation
n 1: purging the body by the use of a cathartic to stimulate
evacuation of the bowels [synonym: {catharsis}, {katharsis},
{purgation}]
2: a ceremonial cleansing from defilement or uncleanness by the
performance of appropriate rites [synonym: {purification},
{purgation}]
3: the act of clearing yourself (or another) from some stigma or
charge [synonym: {purge}, {purging}, {purgation}]

Purgation \Pur*ga"tion\, n. [L. purgatio: cf. F. purgation. See
{Purge}.]
1. The act of purging; the act of clearing, cleansing, or
putifying, by separating and carrying off impurities, or
whatever is superfluous; the evacuation of the bowels.
[1913 Webster]

2. (Law) The clearing of one's self from a crime of which one
was publicly suspected and accused. It was either
canonical, which was prescribed by the canon law, the form
whereof used in the spiritual court was, that the person
suspected take his oath that he was clear of the matter
objected against him, and bring his honest neighbors with
him to make oath that they believes he swore truly; or
vulgar, which was by fire or water ordeal, or by combat.
See {Ordeal}. --Wharton.
[1913 Webster]

Let him put me to my purgation. --Shak.
[1913 Webster]

93 Moby Thesaurus words for "purgation":
BM, Day of Atonement, Yom Kippur, abreaction, absolution,
abstersion, acquittal, acquittance, acting-out, asceticism,
bloody flux, bowdlerization, bowel movement, catharsis, cleaning,
cleansing, clearance, clearing, cold purgatorial fires,
compurgation, crap, defecation, dejection, deliverance,
destigmatization, destigmatizing, detersion, diarrhea, discharge,
disculpation, dismissal, dry cleaning, dysentery,
emotional release, evacuation, exculpation, excuse, exoneration,
explanation, expurgation, fasting, flagellation, flux, forgiveness,
freeing, hair shirt, intermission, justification, lientery,
loose bowels, lustration, maceration, mortification,
motor abreaction, movement, outlet, pardon, penance, penitence,
penitential act, penitential exercise, psychocatharsis,
psychodrama, purgatory, purge, purging, purification, quietus,
quittance, rationalization, rehabilitation, reinstatement, release,
release therapy, remission, removal, repentance, reprieve, respite,
restoration, runs, sackcloth and ashes, shit, shits,
steam cleaning, stool, surcease, suspension, trots, turistas,
verdict of acquittal, vindication, voidance

PURGATION. The clearing one's self of an offence charged, by denying the
guilt on oath or affirmation.
2. There were two sorts of purgation, the vulgar, and the canonical.
3. Vulgar purgation consisted in superstitious trials by hot and cold
water, by fire, by hot irons, by batell, by corsned, &c., which modes of
trial were adopted in times of ignorance and barbarity, and were impiously
called judgments of God.
4. Canonical purgation was the act of justifying one's self, when
accused of some offence in the presence of a number of persons, worthy of
credit, generally twelve, who would swear they believed the accused. See
Compurgator; Wager of Law.
5. In modern times, a man may purge himself of an offence, in some
cases where the facts are within his own knowledge; for example, when a man
is charged with a contempt of court, he may purge himself of such contempt,
by swearing that in doing the act charged, he did not intend to commit a
contempt.


请选择你想看的字典辞典:
单词字典翻译
Purgation查看 Purgation 在百度字典中的解释百度英翻中〔查看〕
Purgation查看 Purgation 在Google字典中的解释Google英翻中〔查看〕
Purgation查看 Purgation 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • r - list. files returns character(0), why? - Stack Overflow
    But this list files(r"(C:\Users\unnik\Desktop\CN)", pattern = "\\ zip$", recursive=FALSE) worked while the following list files(path = "C: Users unnik Desktop CN ", pattern = "* zip", full names = TRUE, recursive = FALSE) did not work
  • 6. 5 Wildcards Patterns and Matching - GNU
    GNU tar can use wildcard patterns for matching (or globbing) archive members when extracting from or listing an archive Wildcard patterns are also used for verifying volume labels of tar archives This section has the purpose of explaining wildcard syntax for tar
  • grep - How do I list every file in a directory except those with . . .
    This safely prints a long directory listing of all the pdf and txt files, including those with spaces or unprintable characters in the name You can also use it with GNU tar as follows: tar -zcf myarchive tar gz --null --files-from <( find -type f ! -name \* tar gz -print0)
  • Extract specific files in a tar archive using a wildcard
    For some older versions of tar, the following is extracted from the "man" file: Filename substitution wildcards cannot be used for extracting files from the archive Rather, use a command of the form: tar xvf dev rmt 0 `tar tf dev rmt 0 | grep 'pattern' `
  • List the contents of a tar or tar. gz file - nixCraft
    How to list the contents of a tar gz file Execute the following command: $ tar -ztvf file tar gz Task: List the contents of a tar bz2 file Run: $ tar -jtvf file tar bz2 Task: Search for specific files In this example, look for * pl (all Perl source code files) inside a detailed table of contents for archive called projects tar gz:
  • tar with --include pattern - Stack Overflow
    So, you can pass an arbitrary list of files for tar to archive from stdin using -files-from - Using find patterns to generate a list of files, your example becomes: find -name '* php' -print0 | tar -cvjf my tar bz2 --null --files-from -
  • How to extract specific file, link folder from tar. gz
    Extracting specific files from a tar gz archive is a useful skill, particularly for managing large archives or when dealing with limited storage space By following these steps and understanding the commands used, you can efficiently manage tar gz files in a Unix-like environment
  • How to handle wildcard matching issues | LabEx
    Wildcards are special characters used in Linux and other operating systems to perform pattern matching and file selection They provide a powerful way to work with multiple files or directories simultaneously, making file manipulation and searching much more efficient
  • linux - tar -C with a wildcard file pattern - Super User
    Can I use the tar command to change directories and use a wildcard file pattern? Here is what I am trying to do: tar -cf example tar -C path to file * xml It works if I don't change directory (-
  • tar specific files based on a pattern - Unix Linux Stack Exchange
    I suggest you the following bash script : do CURTARFILE=`echo $(basename $fn)|awk -F_ '{print $1"_"$2"_"$3" tar gz"}'` if [ "$CURTARFILE" == "$TARFILE"] ; then FILESET=$FILESET" \"$fn\"" FIRST=0 continue fi [ "$FIRST" == "0" ] tar cfz $TARFILE $FILESET $FILESET="\"$fn\"" FIRST=0 TARFILE=$CURTARFILE





中文字典-英文字典  2005-2009