command.cmd

来自「bash debugger. You can use this tool to 」· CMD 代码 · 共 48 行

CMD
48
字号
set trace-commands on# Debugger test of 'command' command## Try to set command when there is none.command 1## Now a command for a real breakpointbreak 23command 1x xend################################ Should see value of x below# from the command statmentbreak 25continue############################### Test of a changing# command statement. First# The setup.##############################command 2print x is now $xendcontinue##################################### Now we'll change the it####################################command 2print "testing overwriting commands"endcontinue##################################### Should have seen the testing message# above, not x. ## FIXME: theres a weird bug ## in evaluating expressions like $i# Now let's remove the command # altogether####################################command 2endcontinuequit

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?