$ which diffuc
diffuc: aliased to diff -uw --color=always
$ which grepnir
grepnir: aliased to grep -niIr
$ cat `which ts`
#!/bin/bash
if [ "$#" -lt 1 ]; then
tmux list-sessions
exit
fi
if ! tmux attach -t "$1"
then
tmux new-session -s "$1"
fi
Depends which programs. Also, it’s very possible that there are open source alternatives
But if you are dead set on using exactly the same program, https://appdb.winehq.org/ is a database of if and how to make them run on Linux. Wine’s core focus is games, but many programs are covered there too