Skip to content

Commit

Permalink
update einstein scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzdom committed Sep 15, 2023
1 parent 1d9915a commit 372adff
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion einstein-setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/user/bin/env bash
#!/usr/bin/env bash

clear
echo
Expand Down
11 changes: 11 additions & 0 deletions einstein-upload-all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

EINSTEIN=$(which einstein)

read -ep "Enter the file extension of the files to upload (.sh/.py/.c): " EXT

for file in ./*.$EXT
do
$EINSTEIN $file
sleep 1
done

0 comments on commit 372adff

Please sign in to comment.