mirror of https://github.com/fengyuhetao/shell.git
13 lines
122 B
Plaintext
13 lines
122 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
function myprint()
|
||
|
{
|
||
|
printf "%-16s - %s", $1, $4
|
||
|
}
|
||
|
|
||
|
function myrand(limit)
|
||
|
{
|
||
|
return int(limit * rand())
|
||
|
}
|
||
|
|