minus-square[object Object]@sh.itjust.workstoLinux@programming.dev•What are some of your most useful or favorite terminal commands?linkfedilinkEnglisharrow-up1·17 days agoI have a script named d in my PATH and it contains this: ("$@" > /dev/null 2>&1 &) It allows me to run any program in a fully detached state in a way that works even if the terminal that started the program closes, and it’s as simple as d <command>. linkfedilink
I have a script named
din my PATH and it contains this:("$@" > /dev/null 2>&1 &)It allows me to run any program in a fully detached state in a way that works even if the terminal that started the program closes, and it’s as simple as
d <command>.