tempfile-name.sh
来自「Shall高级编程」· Shell 代码 · 共 29 行
SH
29 行
#!/bin/bash# tempfile-name.sh: temp filename generatorBASE_STR=`mcookie` # 32-character magic cookie.POS=11 # Arbitrary position in magic cookie string.LEN=5 # Get $LEN consecutive characters.prefix=temp # This is, after all, a "temp" file. # For more "uniqueness," generate the #+ filename prefix using the same method #+ as the suffix, below.suffix=${BASE_STR:POS:LEN} # Extract a 5-character string, #+ starting at position 11.temp_filename=$prefix.$suffix # Construct the filename.echo "Temp filename = "$temp_filename""# sh tempfile-name.sh# Temp filename = temp.e19ea# Compare this method of generating "unique" filenames#+ with the 'date' method in ex51.sh.exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?