Tagged Questions

3
votes
4answers
3k views

bash, dash and string comparison

While writing a fairly simple shell script, I've tried to compare two strings. I was using /bin/sh instead of /bin/bash, and after countless hours of debugging, it turns out dash (which is actually ...
0
votes
3answers
32 views

Bash compare output rather than command

Trying to create a script to read a remote file and check the md5 checksum and alert if a mismatch yet getting an error I can't understand. #!/bin/sh REMOTEMD5=$(ssh user@host 'md5sum file.txt') ...