mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
344 B
16 lines
344 B
#!/usr/bin/env sh
|
|
|
|
export appName='node-v0.12.7-linux-x64';
|
|
export installationPath="$appDir/$appName";
|
|
|
|
downloadPack(){
|
|
wget -c 'https://nodejs.org/dist/v0.12.7/node-v0.12.7-linux-x64.tar.gz';
|
|
}
|
|
|
|
installPack(){
|
|
tar -xzvf 'node-v0.12.7-linux-x64.tar.gz';
|
|
cd "$appName";
|
|
find ./bin -type f -or -type l -executable > 'binaries.lst';
|
|
}
|
|
|
|
|
|
|