Quellcode durchsuchen

removed useless cat (referring to shellcheck SC2002)

Siddharth Dushantha vor 3 Jahren
Ursprung
Commit
20d348cd62
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      tmpmail

+ 1 - 1
tmpmail

@@ -290,7 +290,7 @@ view_recent_email() {
 
 copy_email_to_clipboard(){
     # Copy the email thats being used to the user's clipboard
-    cat $tmpmail_email_address | $copy_to_clipboard_cmd
+    $copy_to_clipboard_cmd < $tmpmail_email_address
 }
 
 die() {