diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2022-06-10 12:32:42 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-06-15 09:38:10 +0200 |
commit | 2320ac3349789551e9c7500dba03e04b9ac02f41 (patch) | |
tree | 693d5ed12c2eb19061e1fc6e871199012a2d8db0 /test/demo/pasta | |
parent | 6703da44c16b9bdfc4d959db270961d8ab826570 (diff) | |
download | passt-2320ac3349789551e9c7500dba03e04b9ac02f41.tar passt-2320ac3349789551e9c7500dba03e04b9ac02f41.tar.gz passt-2320ac3349789551e9c7500dba03e04b9ac02f41.tar.bz2 passt-2320ac3349789551e9c7500dba03e04b9ac02f41.tar.lz passt-2320ac3349789551e9c7500dba03e04b9ac02f41.tar.xz passt-2320ac3349789551e9c7500dba03e04b9ac02f41.tar.zst passt-2320ac3349789551e9c7500dba03e04b9ac02f41.zip |
Don't abbreviate ip(8) arguments in examples and tests
ip(8)'s ability to take abbreviated arguments (e.g. "li sh" instead of
"link show") is very handy when using it interactively, but it doesn't make
for very readable scripts and examples when shown that way.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'test/demo/pasta')
-rw-r--r-- | test/demo/pasta | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/demo/pasta b/test/demo/pasta index 506d948..8b13b5e 100644 --- a/test/demo/pasta +++ b/test/demo/pasta @@ -73,13 +73,13 @@ host q nl nl -ns ip li sh +ns ip link show sleep 3 say Let's configure IPv4 first... sleep 2 ns dhclient sleep 2 -ns ip ad sh +ns ip addr show sleep 5 nl @@ -119,7 +119,7 @@ sleep 5 nl say or the address of the default gateway. sleep 2 -nsout GW ip -j -4 ro sh|jq -rM '.[] | select(.dst == "default").gateway' +nsout GW ip -j -4 route show|jq -rM '.[] | select(.dst == "default").gateway' sleep 5 hostb nc -l -p 31337 sleep 2 |