5 lines
61 B
Bash
Executable file
5 lines
61 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for i in "$@"; do
|
|
echo "$i" >>.gitignore
|
|
done
|