| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043 | msgid ""msgstr """Project-Id-Version: PACKAGE VERSION\n""POT-Creation-Date: 2020-06-17 12:44+0800\n""PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n""Last-Translator: FULL NAME <EMAIL@ADDRESS>\n""Language-Team: LANGUAGE <LL@li.org>\n""Language: zh_CN\n""MIME-Version: 1.0\n""Content-Type: text/plain; charset=UTF-8\n""Content-Transfer-Encoding: 8bit\n""X-Generator: Translate Toolkit 2.2.5\n"#. type: Content of: <sect1><sect1info><address>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:14#, no-wrapmsgid "&coreutils-url;"msgstr "&coreutils-url;"#. type: Content of: <sect1><sect1info>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:12msgid """<productname>coreutils</productname> <productnumber>&coreutils-version;</""productnumber> <placeholder type=\"address\" id=\"0\"/>"msgstr """<productname>coreutils</productname> <productnumber>&coreutils-version;</""productnumber> <placeholder type=\"address\" id=\"0\"/>"#. type: Content of: <sect1><title>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:17msgid "Coreutils-&coreutils-version;"msgstr "Coreutils-&coreutils-version;"#. type: Content of: <sect1><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:20msgid "Coreutils"msgstr "Coreutils"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:26msgid """The Coreutils package contains utilities for showing and setting the basic ""system characteristics."msgstr "Coreutils 软件包包含用于显示和设定系统基本属性的工具。"#. type: Content of: <sect1><sect2><segmentedlist><segtitle>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:30msgid "&buildtime;"msgstr "&buildtime;"#. type: Content of: <sect1><sect2><segmentedlist><segtitle>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:31msgid "&diskspace;"msgstr "&diskspace;"#. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:34#, fuzzymsgid "&coreutils-fin-sbu;"msgstr "&coreutils-ch6-sbu;"#. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:35#, fuzzymsgid "&coreutils-fin-du;"msgstr "&coreutils-ch6-du;"#. type: Content of: <sect1><sect2><title>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:42msgid "Installation of Coreutils"msgstr "安装 Coreutils"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:44msgid """POSIX requires that programs from Coreutils recognize character boundaries ""correctly even in multibyte locales. The following patch fixes this non-""compliance and other internationalization-related bugs."msgstr """POSIX 要求 Coreutils 中的程序即使在多字节 locale 中也能正确识别字符边界。下面""应用一个补丁,以解决 Coreutils 不满足该要求的问题,并修复其他一些国际化相关""的 bug:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:48#, no-wrapmsgid "<userinput remap=\"pre\">patch -Np1 -i ../&coreutils-i18n-patch;</userinput>"msgstr "<userinput remap=\"pre\">patch -Np1 -i ../&coreutils-i18n-patch;</userinput>"#. type: Content of: <sect1><sect2><note><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:51msgid """In the past, many bugs were found in this patch. When reporting new bugs to ""Coreutils maintainers, please check first if they are reproducible without ""this patch."msgstr """在之前,这个补丁中找出了许多 bug。在向 Coreutils 维护者报告新 bug 前,请检查""它们在不使用该补丁的情况下是否还会重现。"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:59msgid "Suppress a test which on some machines can loop forever:"msgstr "阻止一个在某些机器上会无限循环的测试:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:61#, no-wrapmsgid "<userinput remap=\"pre\">sed -i '/test.lock/s/^/#/' gnulib-tests/gnulib.mk</userinput>"msgstr "<userinput remap=\"pre\">sed -i '/test.lock/s/^/#/' gnulib-tests/gnulib.mk</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:63msgid "Now prepare Coreutils for compilation:"msgstr "现在准备编译 Coreutils:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:65#, no-wrapmsgid """<userinput remap=\"configure\">autoreconf -fiv\n""FORCE_UNSAFE_CONFIGURE=1 ./configure \\\n""            --prefix=/usr            \\\n""            --enable-no-install-program=kill,uptime</userinput>"msgstr """<userinput remap=\"configure\">autoreconf -fiv\n""FORCE_UNSAFE_CONFIGURE=1 ./configure \\\n""            --prefix=/usr            \\\n""            --enable-no-install-program=kill,uptime</userinput>"#. type: Content of: <sect1><sect2><variablelist><title>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:71msgid "The meaning of the configure options:"msgstr "配置选项的含义:"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:74msgid "<command>autoreconf</command>"msgstr "<command>autoreconf</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:76msgid """This command updates generated configuration files consistent with the ""latest version of automake."msgstr "该命令重新生成配置文件,使之与 automake 的最新版本一致。"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:83msgid "<envar>FORCE_UNSAFE_CONFIGURE=1</envar>"msgstr "<envar>FORCE_UNSAFE_CONFIGURE=1</envar>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:85msgid """This environment variable allows the package to be built as the root user."msgstr "该环境变量允许以 root 用户身份构建该软件包。"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:92msgid "<parameter>--enable-no-install-program=kill,uptime</parameter>"msgstr "<parameter>--enable-no-install-program=kill,uptime</parameter>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:94msgid """The purpose of this switch is to prevent Coreutils from installing binaries ""that will be installed by other packages later."msgstr "这个开关的目的是防止 Coreutils 安装那些被其他软件包安装的二进制程序。"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:101msgid "Compile the package:"msgstr "编译该软件包:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:103#, no-wrapmsgid "<userinput remap=\"make\">make</userinput>"msgstr "<userinput remap=\"make\">make</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:105msgid """Skip down to <quote>Install the package</quote> if not running the test ""suite."msgstr "如果不运行测试套件,直接跳到 <quote>安装该软件包</quote> 。"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:108msgid """Now the test suite is ready to be run. First, run the tests that are meant ""to be run as user <systemitem class=\"username\">root</systemitem>:"msgstr """现在测试套件已经可以运行了。首先运行那些设计为由 <systemitem class=\"username""\">root</systemitem> 用户运行的测试:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:111#, fuzzy, no-wrapmsgid "<userinput remap=\"test\">make NON_ROOT_USERNAME=tester check-root</userinput>"msgstr "<userinput remap=\"test\">make NON_ROOT_USERNAME=nobody check-root</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:113#, fuzzymsgid """We're going to run the remainder of the tests as the <systemitem class=""\"username\">tester</systemitem> user. Certain tests require that the user ""be a member of more than one group. So that these tests are not skipped, add ""a temporary group and make the user <systemitem class=\"username\">tester</""systemitem> a part of it:"msgstr """之后我们要以 <systemitem class=\"username\">nobody</systemitem> 用户身份运行""其余测试。然而,某些测试要求测试用户属于至少一个组。为了不跳过这些测试,我们""添加一个临时组,并使得 <systemitem class=\"username\">nobody</systemitem> 用""户成为它的成员:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:119#, fuzzy, no-wrapmsgid "<userinput remap=\"test\">echo \"dummy:x:102:tester\" >> /etc/group</userinput>"msgstr "<userinput remap=\"test\">echo \"dummy:x:1000:nobody\" >> /etc/group</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:121msgid """Fix some of the permissions so that the non-root user can compile and run ""the tests:"msgstr "修正访问权限,使得非 root 用户可以编译和运行测试:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:124#, fuzzy, no-wrapmsgid "<userinput remap=\"test\">chown -Rv tester . </userinput>"msgstr "<userinput remap=\"test\">chown -Rv nobody . </userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:126msgid "Now run the tests:"msgstr ""#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:128#, fuzzy, no-wrapmsgid "<userinput remap=\"test\">su tester -c \"PATH=$PATH make RUN_EXPENSIVE_TESTS=yes check\"</userinput>"msgstr """<userinput remap=\"test\">su nobody -s /bin/bash \\\n""          -c \"PATH=$PATH make RUN_EXPENSIVE_TESTS=yes check\"</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:130msgid "Remove the temporary group:"msgstr "删除临时组:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:132#, no-wrapmsgid "<userinput remap=\"test\">sed -i '/dummy/d' /etc/group</userinput>"msgstr "<userinput remap=\"test\">sed -i '/dummy/d' /etc/group</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:133msgid "Install the package:"msgstr "安装该软件包:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:135#, no-wrapmsgid "<userinput remap=\"install\">make install</userinput>"msgstr "<userinput remap=\"install\">make install</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:137msgid "Move programs to the locations specified by the FHS:"msgstr "将程序移动到 FHS 要求的位置:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:139#, fuzzy, no-wrapmsgid """<userinput remap=\"install\">mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin\n""mv -v /usr/bin/{false,ln,ls,mkdir,mknod,mv,pwd,rm} /bin\n""mv -v /usr/bin/{rmdir,stty,sync,true,uname} /bin\n""mv -v /usr/bin/chroot /usr/sbin\n""mv -v /usr/share/man/man1/chroot.1 /usr/share/man/man8/chroot.8\n""sed -i 's/\"1\"/\"8\"/' /usr/share/man/man8/chroot.8</userinput>"msgstr """<userinput remap=\"install\">mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin\n""mv -v /usr/bin/{false,ln,ls,mkdir,mknod,mv,pwd,rm} /bin\n""mv -v /usr/bin/{rmdir,stty,sync,true,uname} /bin\n""mv -v /usr/bin/chroot /usr/sbin\n""mv -v /usr/share/man/man1/chroot.1 /usr/share/man/man8/chroot.8\n""sed -i s/\\\"1\\\"/\\\"8\\\"/1 /usr/share/man/man8/chroot.8</userinput>"#. type: Content of: <sect1><sect2><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:146msgid """Some of the scripts in the LFS-Bootscripts package depend on <command>head</""command>, <command>nice</command>, <command>sleep</command>, and ""<command>touch</command>.  As <filename class=\"directory\">/usr</filename> ""may not be available during the early and late stages of booting, those ""binaries need to be on the root partition to maintain FHS compliance:"msgstr """LFS-Bootscripts 包中的部分脚本可能依赖于 <command>head</command>, ""<command>nice</command>, <command>sleep</command>, 以及 <command>touch</""command>。由于 <filename class=\"directory\">/usr</filename> 在系统引导的较""早阶段可能不可用,需要将这些程序移动到根分区,以保证 FHS 兼容性:"#. type: Content of: <sect1><sect2><screen>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:153#, no-wrapmsgid "<userinput remap=\"install\">mv -v /usr/bin/{head,nice,sleep,touch} /bin</userinput>"msgstr "<userinput remap=\"install\">mv -v /usr/bin/{head,nice,sleep,touch} /bin</userinput>"#. type: Content of: <sect1><sect2><title>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:158msgid "Contents of Coreutils"msgstr "Coreutils 的内容"#. type: Content of: <sect1><sect2><segmentedlist><segtitle>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:161msgid "Installed programs"msgstr "安装的程序"#. type: Content of: <sect1><sect2><segmentedlist><segtitle>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:162msgid "Installed library"msgstr "安装的库"#. type: Content of: <sect1><sect2><segmentedlist><segtitle>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:163msgid "Installed directory"msgstr "安装的目录"#. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:166msgid """[, b2sum, base32, base64, basename, basenc, cat, chcon, chgrp, chmod, chown, ""chroot, cksum, comm, cp, csplit, cut, date, dd, df, dir, dircolors, dirname, ""du, echo, env, expand, expr, factor, false, fmt, fold, groups, head, hostid, ""id, install, join, link, ln, logname, ls, md5sum, mkdir, mkfifo, mknod, ""mktemp, mv, nice, nl, nohup, nproc, numfmt, od, paste, pathchk, pinky, pr, ""printenv, printf, ptx, pwd, readlink, realpath, rm, rmdir, runcon, seq, ""sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, shred, shuf, sleep, ""sort, split, stat, stdbuf, stty, sum, sync, tac, tail, tee, test, timeout, ""touch, tr, true, truncate, tsort, tty, uname, unexpand, uniq, unlink, users, ""vdir, wc, who, whoami, and yes"msgstr """[, b2sum, base32, base64, basename, basenc, cat, chcon, chgrp, chmod, chown, ""chroot, cksum, comm, cp, csplit, cut, date, dd, df, dir, dircolors, dirname, ""du, echo, env, expand, expr, factor, false, fmt, fold, groups, head, hostid, ""id, install, join, link, ln, logname, ls, md5sum, mkdir, mkfifo, mknod, ""mktemp, mv, nice, nl, nohup, nproc, numfmt, od, paste, pathchk, pinky, pr, ""printenv, printf, ptx, pwd, readlink, realpath, rm, rmdir, runcon, seq, ""sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, shred, shuf, sleep, ""sort, split, stat, stdbuf, stty, sum, sync, tac, tail, tee, test, timeout, ""touch, tr, true, truncate, tsort, tty, uname, unexpand, uniq, unlink, users, ""vdir, wc, who, whoami, 以及 yes"#. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:177msgid "libstdbuf.so (in /usr/libexec/coreutils)"msgstr "libstdbuf.so (在 /usr/libexec/coreutils 中)"#. type: Content of: <sect1><sect2><segmentedlist><seglistitem><seg>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:178msgid "/usr/libexec/coreutils"msgstr "/usr/libexec/coreutils"#. type: Content of: <sect1><sect2><variablelist><bridgehead>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:183msgid "Short Descriptions"msgstr "简要描述"#. type: Content of: <sect1><sect2><variablelist>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:184msgid """<?dbfo list-presentation=\"list\"?> <?dbhtml list-presentation=\"table\"?>"msgstr ""#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:188#, fuzzymsgid "<command>[</command>"msgstr "<command>cp</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:190msgid """Is an actual command, /usr/bin/[, that is a synonym for the <command>test</""command> command."msgstr ""#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:193msgid "["msgstr ""#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:199msgid "<command>base32</command>"msgstr "<command>base32</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:201msgid """Encodes and decodes data according to the base32 specification (RFC 4648)"msgstr "根据 base32 标准 (RFC 4648) 编码和解码数据"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:204#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:215msgid "base64"msgstr "base64"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:210msgid "<command>base64</command>"msgstr "<command>base64</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:212msgid """Encodes and decodes data according to the base64 specification (RFC 4648)"msgstr "根据 base64 标准 (RFC 4648) 编码和解码数据"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:221msgid "<command>b2sum</command>"msgstr "<command>b2sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:223msgid "Prints or checks BLAKE2 (512-bit) checksums"msgstr "打印或检查 BLAKE2 (512 位) 校验和"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:225msgid "b2sum"msgstr "b2sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:231msgid "<command>basename</command>"msgstr "<command>basename</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:233msgid "Strips any path and a given suffix from a file name"msgstr "从文件名移除所有路径和一个给定后缀"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:235msgid "basename"msgstr "basename"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:241msgid "<command>basenc</command>"msgstr "<command>basenc</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:243msgid "Encodes or decodes data using various algorithms"msgstr "使用一些算法编码或解码数据"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:245msgid "basenc"msgstr "basenc"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:251msgid "<command>cat</command>"msgstr "<command>cat</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:253msgid "Concatenates files to standard output"msgstr "将文件合并到标准输出"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:255msgid "cat"msgstr "cat"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:261msgid "<command>chcon</command>"msgstr "<command>chcon</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:263msgid "Changes security context for files and directories"msgstr "修改文件和目录的 SELinux 安全上下文"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:265msgid "chcon"msgstr "chcon"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:271msgid "<command>chgrp</command>"msgstr "<command>chgrp</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:273msgid "Changes the group ownership of files and directories"msgstr "修改文件和目录所属的组"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:275msgid "chgrp"msgstr "chgrp"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:281msgid "<command>chmod</command>"msgstr "<command>chmod</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:283msgid """Changes the permissions of each file to the given mode; the mode can be ""either a symbolic representation of the changes to make or an octal number ""representing the new permissions"msgstr """修改给定文件的访问权限为指定模式; 模式可以是所需修改的符号表示,或新权限的八""进制码"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:287msgid "chmod"msgstr "chmod"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:293msgid "<command>chown</command>"msgstr "<command>chown</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:295msgid "Changes the user and/or group ownership of files and directories"msgstr "修改拥有文件的用户或组"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:298msgid "chown"msgstr "chown"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:304msgid "<command>chroot</command>"msgstr "<command>chroot</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:306msgid """Runs a command with the specified directory as the <filename class=""\"directory\">/</filename> directory"msgstr """将给定目录作为 <filename class=\"directory\">/</filename> 目录,运行命令"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:309msgid "chroot"msgstr "chroot"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:315msgid "<command>cksum</command>"msgstr "<command>cksum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:317msgid """Prints the Cyclic Redundancy Check (CRC) checksum and the byte counts of ""each specified file"msgstr "输出每个给定文件的循环冗余检查(CRC) 校验和及字节数"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:320msgid "cksum"msgstr "cksum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:326msgid "<command>comm</command>"msgstr "<command>comm</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:328msgid """Compares two sorted files, outputting in three columns the lines that are ""unique and the lines that are common"msgstr "比较两个排好序的文件,将两个文件特有的部分和它们共有的部分显示为三列"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:331msgid "comm"msgstr "comm"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:337msgid "<command>cp</command>"msgstr "<command>cp</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:339msgid "Copies files"msgstr "复制文件"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:341msgid "cp"msgstr "cp"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:347msgid "<command>csplit</command>"msgstr "<command>csplit</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:349msgid """Splits a given file into several new files, separating them according to ""given patterns or line numbers and outputting the byte count of each new file"msgstr """将给定文件分割为若干新文件,根据给定模式或行号进行分割,并输出每个新文件的字""节数"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:353msgid "csplit"msgstr "csplit"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:359msgid "<command>cut</command>"msgstr "<command>cut</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:361msgid """Prints sections of lines, selecting the parts according to given fields or ""positions"msgstr "根据给定的域或位置,打印输入的分节和选定部分"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:364msgid "cut"msgstr "cut"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:370msgid "<command>date</command>"msgstr "<command>date</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:372msgid "Displays the current time in the given format, or sets the system date"msgstr "以给定格式显示当前时间,或设定系统时间"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:375msgid "date"msgstr "date"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:381msgid "<command>dd</command>"msgstr "<command>dd</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:383msgid """Copies a file using the given block size and count, while optionally ""performing conversions on it"msgstr "以给定块大小和个数复制文件,同时可以进行转换"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:386msgid "dd"msgstr "dd"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:392msgid "<command>df</command>"msgstr "<command>df</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:394msgid """Reports the amount of disk space available (and used) on all mounted file ""systems, or only on the file systems holding the selected files"msgstr "报告每个已挂载文件系统(或包含给定文件的文件系统) 的总大小和可用空间"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:398msgid "df"msgstr "df"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:404msgid "<command>dir</command>"msgstr "<command>dir</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:406msgid """Lists the contents of each given directory (the same as the <command>ls</""command> command)"msgstr "列出给定目录的内容 (和 <command>ls</command> 命令相同)"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:409msgid "dir"msgstr "dir"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:415msgid "<command>dircolors</command>"msgstr "<command>dircolors</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:417msgid """Outputs commands to set the <envar>LS_COLOR</envar> environment variable to ""change the color scheme used by <command>ls</command>"msgstr """输出用于设定 <envar>LS_COLOR</envar> 环境变量的命令,以修改 <command>ls</""command> 的配色方案"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:421msgid "dircolors"msgstr "dircolors"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:427msgid "<command>dirname</command>"msgstr "<command>dirname</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:429msgid "Strips the non-directory suffix from a file name"msgstr "从文件名中删掉非目录的后缀"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:431msgid "dirname"msgstr "dirname"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:437msgid "<command>du</command>"msgstr "<command>du</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:439msgid """Reports the amount of disk space used by the current directory, by each of ""the given directories (including all subdirectories) or by each of the given ""files"msgstr "报告当前目录使用的磁盘空间,给出当前目录下所有子目录和文件占用的空间"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:443msgid "du"msgstr "du"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:449msgid "<command>echo</command>"msgstr "<command>echo</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:451msgid "Displays the given strings"msgstr "显示给定字符串"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:453msgid "echo"msgstr "echo"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:459msgid "<command>env</command>"msgstr "<command>env</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:461msgid "Runs a command in a modified environment"msgstr "在修改的环境中运行命令"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:463msgid "env"msgstr "env"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:469msgid "<command>expand</command>"msgstr "<command>expand</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:471msgid "Converts tabs to spaces"msgstr "将制表符转换成空格"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:473msgid "expand"msgstr "expand"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:479msgid "<command>expr</command>"msgstr "<command>expr</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:481msgid "Evaluates expressions"msgstr "计算表达式"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:483msgid "expr"msgstr "expr"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:489msgid "<command>factor</command>"msgstr "<command>factor</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:491msgid "Prints the prime factors of all specified integer numbers"msgstr "打印所有给定整数的质因数"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:493msgid "factor"msgstr "factor"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:499msgid "<command>false</command>"msgstr "<command>false</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:501msgid """Does nothing, unsuccessfully; it always exits with a status code indicating ""failure"msgstr "什么也不做;总是以失败状态码退出;"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:504msgid "false"msgstr "false"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:510msgid "<command>fmt</command>"msgstr "<command>fmt</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:512msgid "Reformats the paragraphs in the given files"msgstr "重新格式化给定文件的段落"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:514msgid "fmt"msgstr "fmt"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:520msgid "<command>fold</command>"msgstr "<command>fold</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:522msgid "Wraps the lines in the given files"msgstr "折叠给定文件中的行"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:524msgid "fold"msgstr "fold"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:530msgid "<command>groups</command>"msgstr "<command>groups</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:532msgid "Reports a user's group memberships"msgstr "报告用户所属的组"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:534msgid "groups"msgstr "groups"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:540msgid "<command>head</command>"msgstr "<command>head</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:542msgid """Prints the first ten lines (or the given number of lines)  of each given file"msgstr "打印文件的前 10 (或给定行数)行"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:545msgid "head"msgstr "head"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:551msgid "<command>hostid</command>"msgstr "<command>hostid</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:553msgid "Reports the numeric identifier (in hexadecimal) of the host"msgstr "以十六进制格式打印主机数字标识符"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:555msgid "hostid"msgstr "hostid"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:561msgid "<command>id</command>"msgstr "<command>id</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:563msgid """Reports the effective user ID, group ID, and group memberships of the ""current user or specified user"msgstr "报告当前用户或给定用户的有效用户 ID、组 ID 和所属的组"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:566msgid "id"msgstr "id"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:572msgid "<command>install</command>"msgstr "<command>install</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:574msgid """Copies files while setting their permission modes and, if possible, their ""owner and group"msgstr "复制文件并设定它们的访问权限,以及(如果可能) 它们的所有者和属组"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:577msgid "install"msgstr "install"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:583msgid "<command>join</command>"msgstr "<command>join</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:585msgid "Joins the lines that have identical join fields from two separate files"msgstr "将两个文件中拥有相同域的行合并"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:588msgid "join"msgstr "join"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:594msgid "<command>link</command>"msgstr "<command>link</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:596msgid "Creates a hard link with the given name to a file"msgstr "以给定文件名创建硬链接"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:598msgid "link"msgstr "link"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:604msgid "<command>ln</command>"msgstr "<command>ln</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:606msgid "Makes hard links or soft (symbolic) links between files"msgstr "在文件之间创建硬链接或软(符号)链接"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:608msgid "ln"msgstr "ln"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:614msgid "<command>logname</command>"msgstr "<command>logname</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:616msgid "Reports the current user's login name"msgstr "报告当前用户登录名"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:618msgid "logname"msgstr "logname"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:624msgid "<command>ls</command>"msgstr "<command>ls</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:626msgid "Lists the contents of each given directory"msgstr "列出给定目录内容"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:628msgid "ls"msgstr "ls"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:634msgid "<command>md5sum</command>"msgstr "<command>md5sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:636msgid "Reports or checks Message Digest 5 (MD5) checksums"msgstr "报告或检查消息摘要 5 (MD5)校验和"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:638msgid "md5sum"msgstr "md5sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:644msgid "<command>mkdir</command>"msgstr "<command>mkdir</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:646msgid "Creates directories with the given names"msgstr "以给定名称创建目录"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:648msgid "mkdir"msgstr "mkdir"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:654msgid "<command>mkfifo</command>"msgstr "<command>mkfifo</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:656msgid """Creates First-In, First-Outs (FIFOs), a \"named pipe\" in UNIX parlance, ""with the given names"msgstr "以给定名称创建先进先出表 (FIFO),在 UNIX 惯用语中又称为 “命名管道”"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:659msgid "mkfifo"msgstr "mkfifo"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:665msgid "<command>mknod</command>"msgstr "<command>mknod</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:667msgid """Creates device nodes with the given names; a device node is a character ""special file, a block special file, or a FIFO"msgstr "以给定名称创建设备节点;设备节点可能是字符特殊文件、 块特殊文件或 FIFO"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:670msgid "mknod"msgstr "mknod"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:676msgid "<command>mktemp</command>"msgstr "<command>mktemp</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:678msgid "Creates temporary files in a secure manner; it is used in scripts"msgstr "安全地创建临时文件,常用在脚本中"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:680msgid "mktemp"msgstr "mktemp"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:686msgid "<command>mv</command>"msgstr "<command>mv</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:688msgid "Moves or renames files or directories"msgstr "移动或重命名文件或目录"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:690msgid "mv"msgstr "mv"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:696msgid "<command>nice</command>"msgstr "<command>nice</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:698msgid "Runs a program with modified scheduling priority"msgstr "以修改的调度优先级运行程序"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:700msgid "nice"msgstr "nice"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:706msgid "<command>nl</command>"msgstr "<command>nl</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:708msgid "Numbers the lines from the given files"msgstr "标出给定文件的行"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:710msgid "nl"msgstr "nl"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:716msgid "<command>nohup</command>"msgstr "<command>nohup</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:718msgid """Runs a command immune to hangups, with its output redirected to a log file"msgstr "执行命令并使其忽略挂机信号,同时将输出重定向到日志文件"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:721msgid "nohup"msgstr "nohup"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:727msgid "<command>nproc</command>"msgstr "<command>nproc</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:729msgid "Prints the number of processing units available to a process"msgstr "打印进程可用的处理单元数目"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:732msgid "nproc"msgstr "nproc"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:738msgid "<command>numfmt</command>"msgstr "<command>numfmt</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:740msgid "Converts numbers to or from human-readable strings"msgstr "在数字和人类可读字符串之间互相转换"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:742msgid "numfmt"msgstr "numfmt"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:748msgid "<command>od</command>"msgstr "<command>od</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:750msgid "Dumps files in octal and other formats"msgstr "以八进制或其他格式转储文件"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:752msgid "od"msgstr "od"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:758msgid "<command>paste</command>"msgstr "<command>paste</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:760msgid """Merges the given files, joining sequentially corresponding lines side by ""side, separated by tab characters"msgstr "合并给定文件,将它们的对应行连接起来,以制表符分割"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:763msgid "paste"msgstr "paste"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:769msgid "<command>pathchk</command>"msgstr "<command>pathchk</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:771msgid "Checks if file names are valid or portable"msgstr "检查文件名的有效性和可移植性"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:773msgid "pathchk"msgstr "pathchk"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:779msgid "<command>pinky</command>"msgstr "<command>pinky</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:781msgid """Is a lightweight finger client; it reports some information about the given ""users"msgstr "是轻量级 finger 客户端,报告给定用户的一些信息"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:784msgid "pinky"msgstr "pinky"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:790msgid "<command>pr</command>"msgstr "<command>pr</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:792msgid "Paginates and columnates files for printing"msgstr "对文件进行分页和分栏以便打印"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:794msgid "pr"msgstr "pr"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:800msgid "<command>printenv</command>"msgstr "<command>printenv</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:802msgid "Prints the environment"msgstr "打印环境变量"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:804msgid "printenv"msgstr "printenv"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:810msgid "<command>printf</command>"msgstr "<command>printf</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:812msgid """Prints the given arguments according to the given format, much like the C ""printf function"msgstr "以给定格式打印给定参数,很像 C printf 函数"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:815msgid "printf"msgstr "printf"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:821msgid "<command>ptx</command>"msgstr "<command>ptx</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:823msgid """Produces a permuted index from the contents of the given files, with each ""keyword in its context"msgstr "用文中的每个关键字,根据给定文件内容生成重排索引"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:826msgid "ptx"msgstr "ptx"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:832msgid "<command>pwd</command>"msgstr "<command>pwd</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:834msgid "Reports the name of the current working directory"msgstr "报告当前工作目录名"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:836msgid "pwd"msgstr "pwd"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:842msgid "<command>readlink</command>"msgstr "<command>readlink</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:844msgid "Reports the value of the given symbolic link"msgstr "报告给定符号链接的值"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:846msgid "readlink"msgstr "readlink"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:852msgid "<command>realpath</command>"msgstr "<command>realpath</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:854msgid "Prints the resolved path"msgstr "打印解析过的目录"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:856msgid "realpath"msgstr "realpath"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:862msgid "<command>rm</command>"msgstr "<command>rm</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:864msgid "Removes files or directories"msgstr "删除文件或目录"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:866msgid "rm"msgstr "rm"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:872msgid "<command>rmdir</command>"msgstr "<command>rmdir</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:874msgid "Removes directories if they are empty"msgstr "如果目录是空的,删除它们"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:876msgid "rmdir"msgstr "rmdir"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:882msgid "<command>runcon</command>"msgstr "<command>runcon</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:884msgid "Runs a command with specified security context"msgstr "以给定 SELinux 安全上下文运行命令"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:886msgid "runcon"msgstr "runcon"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:892msgid "<command>seq</command>"msgstr "<command>seq</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:894msgid """Prints a sequence of numbers within a given range and with a given increment"msgstr "以给定的范围和增量打印等差数列"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:897msgid "seq"msgstr "seq"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:903msgid "<command>sha1sum</command>"msgstr "<command>sha1sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:905msgid "Prints or checks 160-bit Secure Hash Algorithm 1 (SHA1)  checksums"msgstr "打印或检查 160 位安全散列算法 1  (SHA1) 校验和"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:908msgid "sha1sum"msgstr "sha1sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:914msgid "<command>sha224sum</command>"msgstr "<command>sha224sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:916msgid "Prints or checks 224-bit Secure Hash Algorithm checksums"msgstr "打印或检查 224 位安全散列算法校验和"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:918msgid "sha224sum"msgstr "sha224sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:924msgid "<command>sha256sum</command>"msgstr "<command>sha256sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:926msgid "Prints or checks 256-bit Secure Hash Algorithm checksums"msgstr "打印或检查 256 位安全散列算法校验和"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:928msgid "sha256sum"msgstr "sha256sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:934msgid "<command>sha384sum</command>"msgstr "<command>sha384sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:936msgid "Prints or checks 384-bit Secure Hash Algorithm checksums"msgstr "打印或检查 384 位安全散列算法校验和"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:938msgid "sha384sum"msgstr "sha384sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:944msgid "<command>sha512sum</command>"msgstr "<command>sha512sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:946msgid "Prints or checks 512-bit Secure Hash Algorithm checksums"msgstr "打印或检查 512 位安全散列算法校验和"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:948msgid "sha512sum"msgstr "sha512sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:954msgid "<command>shred</command>"msgstr "<command>shred</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:956msgid """Overwrites the given files repeatedly with complex patterns, making it ""difficult to recover the data"msgstr "将给定文件多次用复杂模式覆盖,增加恢复数据的难度"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:959msgid "shred"msgstr "shred"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:965msgid "<command>shuf</command>"msgstr "<command>shuf</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:967msgid "Shuffles lines of text"msgstr "打乱文件中的行"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:969msgid "shuf"msgstr "shuf"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:975msgid "<command>sleep</command>"msgstr "<command>sleep</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:977msgid "Pauses for the given amount of time"msgstr "等待给定时间"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:979msgid "sleep"msgstr "sleep"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:985msgid "<command>sort</command>"msgstr "<command>sort</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:987msgid "Sorts the lines from the given files"msgstr "对给定文件的行进行排序"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:989msgid "sort"msgstr "sort"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:995msgid "<command>split</command>"msgstr "<command>split</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:997msgid "Splits the given file into pieces, by size or by number of lines"msgstr "根据大小或行数,将指定文件分割成若干部分"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1000msgid "split"msgstr "split"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1006msgid "<command>stat</command>"msgstr "<command>stat</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1008msgid "Displays file or filesystem status"msgstr "显示文件或文件系统状态"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1010msgid "stat"msgstr "stat"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1016msgid "<command>stdbuf</command>"msgstr "<command>stdbuf</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1018msgid """Runs commands with altered buffering operations for its standard streams"msgstr "以修改的标准流缓冲操作运行命令"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1021msgid "stdbuf"msgstr "stdbuf"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1027msgid "<command>stty</command>"msgstr "<command>stty</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1029msgid "Sets or reports terminal line settings"msgstr "设置或报告终端行设定"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1031msgid "stty"msgstr "stty"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1037msgid "<command>sum</command>"msgstr "<command>sum</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1039msgid "Prints checksum and block counts for each given file"msgstr "打印每个指定文件的校验和及块个数"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1041msgid "sum"msgstr "sum"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1047msgid "<command>sync</command>"msgstr "<command>sync</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1049msgid """Flushes file system buffers; it forces changed blocks to disk and updates ""the super block"msgstr "刷新文件系统缓冲;它将修改过的块强制写入磁盘,并更新超级块"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1052msgid "sync"msgstr "sync"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1058msgid "<command>tac</command>"msgstr "<command>tac</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1060msgid "Concatenates the given files in reverse"msgstr "逆序连接给定文件"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1062msgid "tac"msgstr "tac"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1068msgid "<command>tail</command>"msgstr "<command>tail</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1070msgid """Prints the last ten lines (or the given number of lines) of each given file"msgstr "输出给定文件的最后 10 (或指定行数) 行"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1073msgid "tail"msgstr "tail"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1079msgid "<command>tee</command>"msgstr "<command>tee</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1081msgid """Reads from standard input while writing both to standard output and to the ""given files"msgstr "读取标准输入,并将内容同时写入标准输出和给定文件"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1084msgid "tee"msgstr "tee"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1090msgid "<command>test</command>"msgstr "<command>test</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1092msgid "Compares values and checks file types"msgstr "比较两个值,或检查文件类型"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1094msgid "test"msgstr "test"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1100msgid "<command>timeout</command>"msgstr "<command>timeout</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1102msgid "Runs a command with a time limit"msgstr "在限定时间内运行命令"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1104msgid "timeout"msgstr "timeout"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1110msgid "<command>touch</command>"msgstr "<command>touch</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1112msgid """Changes file timestamps, setting the access and modification times of the ""given files to the current time; files that do not exist are created with ""zero length"msgstr """修改文件时间戳,将每个给定文件的访问和修改时间设为当前时间; 以零长度创建当前""不存在的文件"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1116msgid "touch"msgstr "touch"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1122msgid "<command>tr</command>"msgstr "<command>tr</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1124msgid """Translates, squeezes, and deletes the given characters from standard input"msgstr "从标准输入变换、压缩或删除给定字符"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1127msgid "tr"msgstr "tr"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1133msgid "<command>true</command>"msgstr "<command>true</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1135msgid """Does nothing, successfully; it always exits with a status code indicating ""success"msgstr "什么也不做;总是以成功状态码退出"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1138msgid "true"msgstr "true"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1144msgid "<command>truncate</command>"msgstr "<command>truncate</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1146msgid "Shrinks or expands a file to the specified size"msgstr "将文件截断或扩展到指定大小"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1148msgid "truncate"msgstr "truncate"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1154msgid "<command>tsort</command>"msgstr "<command>tsort</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1156msgid """Performs a topological sort; it writes a completely ordered list according ""to the partial ordering in a given file"msgstr "进行拓扑排序; 根据给定文件的部分顺序信息输出完整的排序列表"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1159msgid "tsort"msgstr "tsort"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1165msgid "<command>tty</command>"msgstr "<command>tty</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1167msgid "Reports the file name of the terminal connected to standard input"msgstr "报告标准输入的终端文件名"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1170msgid "tty"msgstr "tty"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1176msgid "<command>uname</command>"msgstr "<command>uname</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1178msgid "Reports system information"msgstr "报告系统信息"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1180msgid "uname"msgstr "uname"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1186msgid "<command>unexpand</command>"msgstr "<command>unexpand</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1188msgid "Converts spaces to tabs"msgstr "将空格转换成制表符"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1190msgid "unexpand"msgstr "unexpand"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1196msgid "<command>uniq</command>"msgstr "<command>uniq</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1198msgid "Discards all but one of successive identical lines"msgstr "在连续的相同行中只保留一行,删除其他所有行"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1200msgid "uniq"msgstr "uniq"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1206msgid "<command>unlink</command>"msgstr "<command>unlink</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1208msgid "Removes the given file"msgstr "删除给定文件"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1210msgid "unlink"msgstr "unlink"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1216msgid "<command>users</command>"msgstr "<command>users</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1218msgid "Reports the names of the users currently logged on"msgstr "报告当前登录系统的用户名"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1220msgid "users"msgstr "users"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1226msgid "<command>vdir</command>"msgstr "<command>vdir</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1228msgid "Is the same as <command>ls -l</command>"msgstr "和 <command>ls -l</command> 相同"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1230msgid "vdir"msgstr "vdir"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1236msgid "<command>wc</command>"msgstr "<command>wc</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1238msgid """Reports the number of lines, words, and bytes for each given file, as well ""as a total line when more than one file is given"msgstr "报告给定文件的行数、单词数和字节数"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1241msgid "wc"msgstr "wc"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1247msgid "<command>who</command>"msgstr "<command>who</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1249msgid "Reports who is logged on"msgstr "报告当前登录的用户"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1251msgid "who"msgstr "who"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1257msgid "<command>whoami</command>"msgstr "<command>whoami</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1259msgid "Reports the user name associated with the current effective user ID"msgstr "报告与当前有效用户 ID 相关的用户名"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1262msgid "whoami"msgstr "whoami"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1268msgid "<command>yes</command>"msgstr "<command>yes</command>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1270msgid "Repeatedly outputs <quote>y</quote> or a given string until killed"msgstr "不停输出 <quote>y</quote> 或给定字符串,直到被杀死"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1273msgid "yes"msgstr "yes"#. type: Content of: <sect1><sect2><variablelist><varlistentry><term>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1279msgid "<filename class=\"libraryfile\">libstdbuf</filename>"msgstr "<filename class=\"libraryfile\">libstdbuf</filename>"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><para>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1281msgid "Library used by <command>stdbuf</command>"msgstr "<command>stdbuf</command> 使用的库"#. type: Content of: <sect1><sect2><variablelist><varlistentry><listitem><indexterm><primary>#: /home/xry111/svn-repos/LFS-BOOK/chapter08/coreutils.xml:1283msgid "libstdbuf"msgstr "libstdbuf"#~ msgid ""#~ "Now run the tests. Make sure the PATH in the <userinput>su</userinput> "#~ "environment includes /tools/bin."#~ msgstr ""#~ "现在运行测试。执行以下命令,确保在 <userinput>su</userinput> 环境的 PATH "#~ "变量包含 /tools/bin 的情况下运行测试。"#~ msgid ""#~ "The test program test-getlogin is known to fail in a partially built "#~ "system environment like the chroot environment here, but passes if run at "#~ "the end of this chapter.  The test program tty.sh is also known to fail."#~ msgstr ""#~ "已知测试程序 test-getlogin 在部分构建的系统环境(如这里的 chroot 环境)会"#~ "失败,但是在本章的最后再运行即可通过。另外已知测试程序 tty.sh 可能会失"#~ "败。"
 |