⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 convertsmbpasswd.perl

📁 共享Unix的资源(磁盘或打印机等)给Windows使用的程序
💻 PERL
字号:
#!/usr/bin/perl -w## Convert a Samba 1.9.18 smbpasswd file format into# a Samba 2.0 smbpasswd file format.# Read from stdin and write to stdout for simplicity.# Set the last change time to the time of conversion.while ( <> ) {  @V = split(/:/);  if ( ! /^\#/ ) {    $V[6] = $V[4] . "\n";    $V[5] = sprintf( "LCT-%X", time());    $V[4] = "[U          ]";  }  print( join( ':', @V));}

⌨️ 快捷键说明

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