6 lines
188 B
Plaintext
6 lines
188 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# System tools
|
||
|
if [ -f /sbin/ifconfig ] && [ -x /sbin/ifconfig ]; then alias ifconfig='/sbin/ifconfig'; fi
|
||
|
if [ -f /sbin/ip ] && [ -x /sbin/ip ]; then alias ip='/sbin/ip'; fi
|