Skip to content

Commit

Permalink
Added new modification
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayyadav3016 committed Jan 30, 2016
1 parent a5ce8fb commit 257439a
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compile_example
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ set -o nounset # Treat unset variables as an error
cppname=$(basename $1)
output=`echo ${cppname} | cut -d. -f1`

g++ $1 -g -o ~/programming/${output}
g++ $1 -g -o ~/programming/${output} -std=c++11
1 change: 1 addition & 0 deletions eclipse
1 change: 1 addition & 0 deletions idea.sh
2 changes: 1 addition & 1 deletion mounthdd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#===============================================================================

set -o nounset # Treat unset variables as an error
IP=169.254.125.20
IP=169.254.123.105
sudo mount -o soft,intr,rsize=8192,wsize=8192 $IP:/nfs ~/nfs/

23 changes: 23 additions & 0 deletions restart_wifi.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash -
#===============================================================================
#
# FILE: restart_wifi.sh
#
# USAGE: ./restart_wifi.sh
#
# DESCRIPTION:
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: YOUR NAME (),
# ORGANIZATION:
# CREATED: 12/16/2015 09:31
# REVISION: ---
#===============================================================================

set -o nounset # Treat unset variables as an error

sudo rmmod iwlmvm iwlwifi
sudo modprobe iwlwifi 11n disable=1

0 comments on commit 257439a

Please sign in to comment.