5 lines
139 B
Bash
5 lines
139 B
Bash
#!/bin/bash
|
|
|
|
if (which zfs &> /dev/null); then alias zfs='sudo zfs'; fi
|
|
if (which zpool &> /dev/null); then alias zpool='sudo zpool'; fi
|