欢迎来到天天文库
浏览记录
ID:1990698
大小:99.50 KB
页数:9页
时间:2017-11-14
《small getopts tutorial》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、SmallgetoptstutorialincompleteWhenyouwanttoparsecommandlineargumentsinaprofessionalway,getoptsisthetoolofchoice.Unlikeitsolderbrothergetopt(notethemissings!),it'sashellbuiltincommand.Theadvantageisyoudon'tneedtohandyourpositionalparametersthroughtoanext
2、ernalprogramgetoptscaneasilysetshellvariablesyoucanuseforparsing(impossibleforanexternalprocess!)youdon'thavetoarguewithseveralgetoptimplementationswhichhadbuggyconceptsinthepast(whitespaces,…)getoptsisdefinedinPOSIX®Someothermethodstoparsepositionalpar
3、ameters(withoutgetopt(s))aredescribedin:Howtohandlepositionalparameters.NotethatgetoptsisnotabletoparseGNU-stylelongoptions(--myoption)orXF86-stylelongoptions(-myoption)!DescriptionTerminologyIt'susefultoknowwhatwe'retalkingabouthere,solet'ssee…Consider
4、thefollowingcommandline:mybackup-x-f/etc/mybackup.conf-r./foo.txt./bar.txtAllthesearepositionalparameters,butyoucandividethemintosomelogicalgroups:-xisanoption,aflag,aswitch:onecharacter,indroducedbyadash(-)-fisalsoanoption,butthisoptionhasanadditionala
5、rgument(argumenttotheoption-f):/etc/mybackup.conf.Thisargumentisusuallyseparatedfromitsoption(byawhitespaceoranyothersplittingcharacter)butthat'snotamust,-f/etc/mybackup.confisvalid.-rdependsontheconfiguration.Inthisexample,-rdoesn'ttakearguments,soit's
6、astandaloneoption,like-x./foo.txtand./bar.txtareremainingargumentswithoutanyoptionrelated.Theseoftenareusedasmass-arguments(likeforexamplethefilenamesyouspecifyforcp(1))orforargumentsthatdon'tneedanoptiontoberecognizedbecauseoftheintendedbehaviourofthep
7、rogram(likethefilenameargumentyougiveyourtext-editortoopenanddisplay-whywouldoneneedanextraswitchforthat?).POSIX®callsthemoperands.Togiveyouanideaaboutwhygetoptsisuseful:Theabovecommandlinecouldalsoreadlike…mybackup-xrf/etc/mybackup.conf./foo.txt./bar.t
8、xt…whichisveryhardtoparsebyowncode.getoptsrecognizedallthecommonoptionformats.Theoptionflagscanbeupper-andlowercasecharacters,andofcoursedigits.Itmayrecognizeothercharacters,butthat'snotrecommended(usabilityandmaybeproblemswithsp
此文档下载收益归作者所有