mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
0e8fd33987
(This used to be commit 291551d807
)
7 lines
192 B
Bash
Executable File
7 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
awk 'BEGIN {FS=":"
|
|
printf("#\n# SMB password file.\n#\n")
|
|
}
|
|
{ printf( "%s:%s:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:%s:%s:%s\n", $1, $3, $5, $6, $7) }
|
|
'
|