Search results

  1. L

    I'm getting the strong feeling that...

    ...every script I write/rewrite since installing a newer Kubuntu is written wrong from the start. The one I'm having trouble with now is supposed to delete text files ending in .log failing to do this one simple thing. My script: #!/bin/bash echo "This script will remove .log files from the...
  2. L

    Catching empty variable in touch alias

    I have a bash alias called ttouch. It's a shortcut to touch -t, which takes a variable (tdate) and a file on which to apply it, represented (most often but not always) by a variable such as $picc. I'm trying to write a function so when the user (always me) forgets to supply the target, touch...
  3. L

    Not sure whether This belongs here but...

    .. I have a Bash script meant to look for backup files (suffixed with .bak or ~). I also have an if..then routine (?) to write the names of the files found with those suffixes to a text file. The text of the script is as follows: #!/bin/bash files1=$(find . -type f -name "*bak*") if [ -e...
Top