嵌入式 Linux下sz与rz命令使用

2019-07-12 15:21发布

sz/rz命令解析   linux和windows通信比较常用的两个命令 rz命令常用于从windows上下载文件,通常用于在超级终端上传文件到linux上 具体命令解析如下: [csharp] viewplaincopy
  1. Usage: rz [options] [filename.if.xmodem]  
  2.   
  3. Receive files with ZMODEM/YMODEM/XMODEM protocol  
  4.   
  5.     (X) option applies to XMODEM only  
  6.   
  7.     (Y) option applies to YMODEM only  
  8.   
  9.     (Z) option applies to ZMODEM only  
  10.   
  11.   -+, --append                append to existing files  
  12.   
  13.   -a, --ascii                 ASCII transfer (change CR/LF to LF)  
  14.   
  15.   -b, --binary                binary transfer  
  16.   
  17.   -B, --bufsize             buffer bytes (N==auto: buffer whole file)  
  18.   
  19.   -c, --with-crc              Use 16 bit CRC (X)  
  20.   
  21.   -C, --allow-remote-commands allow execution of remote commands (Z)  
  22.   
  23.   -D, --null                  write all received data to /dev/null  
  24.   
  25.       --delay-startup       sleep seconds before doing anything  
  26.   
  27.   -e, --escape                Escape control characters (Z)  
  28.   
  29.   -E, --rename                rename any files already existing  
  30.   
  31.       --errors              generate CRC error every bytes (debugging)  
  32.   
  33.   -h, --help                  Help, print this usage message  
  34.   
  35.   -m, --min-bps             stop transmission if BPS below  
  36.   
  37.   -M, --min-bps-time          for at least seconds (default120)  
  38.   
  39.   -O, --disable-timeouts      disable timeout code, wait forever for data  
  40.   
  41.       --o-sync                open output file(s) in synchronous write mode  
  42.   
  43.   -p, --protect               protect existing files  
  44.   
  45.   -q, --quiet                 quiet, no progress reports  
  46.   
  47.   -r, --resume                try to resume interrupted file transfer (Z)  
  48.   
  49.   -R, --restricted            restricted, more secure mode  
  50.   
  51.   -s, --stop-at {HH:MM|+N}    stop transmission at HH:MM or in seconds  
  52.   
  53.   -S, --timesync              request remote time (twice: set local time)  
  54.   
  55.       --syslog[=off]          turn syslog on or off, if possible  
  56.   
  57.   -t, --timeout             set timeout to tenths of second  
  58.   
  59.   -u, --keep-uppercase        keep upper case filenames  
  60.   
  61.   -U, --unrestrict            disable restricted mode (if allowed to)  
  62.   
  63.   -v, --verbose               be verbose, provide debugging information  
  64.   
  65.   -w, --windowsize          Window is bytes (Z)  
  66.   
  67.   -X  --xmodem                use XMODEM protocol  
  68.   
  69.   -y, --overwrite             Yes, clobber existing file if any  
  70.