Update zshrc.d

This commit is contained in:
David Tomaschik
2025-06-10 09:07:56 -07:00
parent bbeb451251
commit 4743b635aa
4 changed files with 3 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
if [ -f "`command which nasm 2>/dev/null`" -a -f "`command which objdump 2>/dev/null`" ] ; then
if have_command nasm && have_command objdump ; then
assemble_shellcode() {
if [ -z "$1" ] ; then echo "Usage: $0 <assembly file>" >&2 ; return 1 ; fi
local NASM=`command which nasm`