catbin args exit if $# -lt 1

This commit is contained in:
dangerboot
2026-01-24 16:31:11 +01:00
parent 341ce28904
commit 4fa701d794
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/bash #!/usr/bin/bash
if [ "$#" -ne 1 ] ; then if [ "$#" -lt 1 ] ; then
echo "Usage: $0 arg1" echo "Usage: $0 arg1"
exit 1 exit 1
fi fi