seq

  1. cloudytechi147

    Linux sequence function isn't working properly in a bash script

    I'm working on a Linux course and using the best Linux OS, the instructor uses a ping-sweeping function as an example. It is meant to iterate through potential IPs on a network from 1 through 255 and return the ones that reply. The code is as follows #!/bin/bash for ip in 'seq 1 254'; do ping...
Top