1#!/bin/sh 2 3# setup the test environment inside this shell 4. ${srcdir:-.}/setup-sourced 5 6xauth add examplehost1/unix:0 MIT-MAGIC-COOKIE-1 b90b0fd1cf6a0e7a2c74c00000000001 7xauth add examplehost2/unix:0 . b90b0fd1cf6a0e7a2c74c00000000002 8xauth add examplehost3/unix:0 . b90b0fd1cf6a0e7a2c74c00000000003 9 10xauth list 11xauth nlist 12xauth list examplehost1/unix:0 13xauth nlist examplehost2/unix:0 14 15xauth remove examplehost1/unix:0 16xauth list 17xauth remove examplehost2/unix:0 18xauth remove examplehost3/unix:0 19xauth list 20 21