6 lines
62 B
Text
6 lines
62 B
Text
|
#!/bin/bash
|
||
|
|
||
|
for i in "$@"; do
|
||
|
echo "$i" >> .gitignore
|
||
|
done
|