Jump to content

Wind010

Members
  • Posts

    3
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Wind010

  1. 3 minutes ago, Wind010 said:

    I was able to resolve this by deleting all the .enable and .disable files from /root/portals using the following since the -delete flag isn't supported with find in this bash.
     

    rm $(find -type f -name '.enable')
    
    rm $(find -type f -name '.disable')

     

    Correction from the portals directory:
     

    rm $(find . -type f -name '.enable')
    
    rm $(find . -type f -name '.disable')

     

    • Like 1
×
×
  • Create New...