% cx scriptfile
Using cw adds write permission;
c-w takes it away. This is the single script file
for all three commands:
#! /bin/sh
case "$0" in
*cx) chmod +x "$@" ;;
*cw) chmod +w "$@" ;;
*c-w) chmod -w "$@" ;;
*) echo "$0: Help! Shouldn't get here!" 1>&2; exit 1 ;;
esac
The script has three links. Put it in a file named
cx. Then type:
% chmod +x cx
% ln cx cw
% ln cx c-w