📄 l5.1a
字号:
#printMost UNIX commands, like "ls" and "cat", let youspecify any number of file names after the command.To make this as easy as possible, there are someways to abbreviate file names. This is usuallyfaster and more accurate than typing out the list in full.For example, when the character "?" is used in a file name,it will represent any character that might bein a file name. That is, the name "a?" isan abbreviation for the files "a1", "a2", "aa",and so forth. You can say ls a?and if there are any file names beginning with"a" that are exactly two letters long, the computerwill tell you their names. Try that here.First list all the file names with "ls"; then type ls a?to get all the two letter names beginning with "a".Then type "ready".#create a1#create a12#create abcdef#create ax#create aa#copyin#user#uncopyingrep '^ls a?$' .copy >/dev/null#log#next5.1b 05.1c 55.1e 10
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -